Skip to content

Commit

Permalink
Update init with imports and __all__ = [..]
Browse files Browse the repository at this point in the history
  • Loading branch information
FloraSauerbronn committed Jun 3, 2024
1 parent 42bb605 commit 45aef0a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions gliderpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@
from ._version import __version__
except ImportError:
__version__ = "unknown"


from .plotting import plot_transect
from .fetchers import GliderDataFetcher

__all__ = [
"GliderDataFetcher",
"plot_transect"
]

0 comments on commit 45aef0a

Please sign in to comment.