Skip to content

Commit

Permalink
refactor(dataset): add missing __all__ declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
wvenialbo committed Oct 25, 2024
1 parent 4c82321 commit c1c0888
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/GOES_DL/dataset/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .locator import ProductLocator as ProductLocator

__all__ = ["ProductLocator"]
2 changes: 2 additions & 0 deletions src/GOES_DL/dataset/base/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .locator_gg import ProductLocatorGG as ProductLocatorGG

__all__ = ["ProductLocatorGG"]
20 changes: 20 additions & 0 deletions src/GOES_DL/dataset/goes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,23 @@
GOESLightningMapperProductLocator = GOESProductLocatorGLM
GOESPrimaryMultibandProductLocator = GOESProductLocatorABIPM
GOESPrimaryProductLocator = GOESProductLocatorABIPP

__all__ = [
"GOESProductLocatorABI",
"GOESProductLocatorABIDC",
"GOESProductLocatorDMW",
"GOESProductLocatorDMWV",
"GOESProductLocatorABIDP",
"GOESProductLocatorGLM",
"GOESProductLocatorLCFA",
"GOESProductLocatorABIPM",
"GOESProductLocatorMCMIP",
"GOESProductLocatorABIPP",
"GOESProductLocatorCMIP",
"GOESProductLocatorRad",
"GOESDerivedProductLocator",
"GOESDerivedWithCannelProductLocator",
"GOESLightningMapperProductLocator",
"GOESPrimaryMultibandProductLocator",
"GOESPrimaryProductLocator",
]
2 changes: 2 additions & 0 deletions src/GOES_DL/dataset/gridsat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from .locator_b1 import GridSatProductLocatorB1 as GridSatProductLocatorB1
from .locator_gc import GridSatProductLocatorGC as GridSatProductLocatorGC

__all__ = ["GridSatProductLocatorB1", "GridSatProductLocatorGC"]

0 comments on commit c1c0888

Please sign in to comment.