Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Feb 17, 2021
1 parent 6b4843f commit 0056c8a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ctapipe_io_lst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from ctapipe.io import EventSource
from ctapipe.io.datalevels import DataLevel
from ctapipe.core.traits import Int, Bool, List, Float, Enum
from ctapipe.core.traits import Int, Bool, Float, Enum
from ctapipe.containers import PixelStatusContainer, EventType

from .containers import LSTArrayEventContainer, LSTServiceContainer
Expand All @@ -37,7 +37,7 @@
TIB_DTYPE,
)
from .constants import (
HIGH_GAIN, N_PIXELS, N_MODULES, N_SAMPLES
HIGH_GAIN, N_PIXELS, N_SAMPLES
)

__all__ = ['LSTEventSource', '__version__']
Expand Down
2 changes: 1 addition & 1 deletion ctapipe_io_lst/calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
)

from ctapipe.calib.camera.gainselection import ThresholdGainSelector
from ctapipe.containers import MonitoringContainer, ArrayEventContainer, EventType
from ctapipe.containers import MonitoringContainer, ArrayEventContainer
from ctapipe.io import HDF5TableReader


Expand Down
3 changes: 0 additions & 3 deletions ctapipe_io_lst/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import numpy as np


N_GAINS = 2
N_MODULES = 265
N_PIXELS_MODULE = 7
Expand Down
2 changes: 1 addition & 1 deletion ctapipe_io_lst/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from astropy import units as u
from numpy import nan
from ctapipe.core import Container, Field, Map
from ctapipe.containers import ArrayEventContainer, MonitoringContainer
from ctapipe.containers import ArrayEventContainer


__all__ = [
Expand Down
1 change: 0 additions & 1 deletion ctapipe_io_lst/tests/test_event_time.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from ctapipe_io_lst import event_time
import os
from pathlib import Path
import numpy as np
Expand Down

0 comments on commit 0056c8a

Please sign in to comment.