Skip to content

Commit

Permalink
fix unused imports to access module
Browse files Browse the repository at this point in the history
  • Loading branch information
guzmanlopez committed Nov 5, 2024
1 parent d59ad6c commit 8631a7f
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .deckhand import blueprint as deckhand

__all__ = ["deckhand"]
19 changes: 19 additions & 0 deletions model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,22 @@
from .test import T, Test, TestModelView
from .track import Track
from .videofiles import VideoFile

__all__ = [
"AifishData",
"Base",
"BoatSchedule",
"DeckhandEventRaw",
"DeckhandEventView",
"GpsData",
"InternetData",
"InternetDataView",
"OndeckData",
"RiskVector",
"RiskVectorModelView",
"T",
"Test",
"TestModelView",
"Track",
"VideoFile",
]
12 changes: 12 additions & 0 deletions vector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,15 @@
from .tegrastats import TegrastatsVector
from .thalos_mount import ThalosMountVector
from .thalos_vids_exist import ThalosVideosExistVector

__all__ = [
"CatchCountA",
"ElogTimeGapsVector",
"EquipmentOutageAggVector",
"FishAiEventsComeInFourHourBurstsVector",
"GpsVector",
"InternetVector",
"TegrastatsVector",
"ThalosMountVector",
"ThalosVideosExistVector",
]

0 comments on commit 8631a7f

Please sign in to comment.