Skip to content

Commit 357c997

Browse files
committed
Add imports to package top-level init
1 parent 257de3d commit 357c997

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

erddapy/__init__.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
"""Easier access to scientific data."""
22

33
from erddapy.erddapy import ERDDAP
4+
from erddapy.objects import ERDDAPConnection, ERDDAPServer, GridDataset, TableDataset
45
from erddapy.servers.servers import servers
56

6-
__all__ = ["ERDDAP", "servers"]
7+
__all__ = [
8+
"ERDDAP",
9+
"servers",
10+
"ERDDAPConnection",
11+
"ERDDAPServer",
12+
"TableDataset",
13+
"GridDataset",
14+
]
715

816
try:
917
from ._version import __version__

erddapy/objects/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88

9-
from objects import (
9+
from .objects import (
1010
ERDDAPConnection,
1111
ERDDAPDataset,
1212
ERDDAPServer,

0 commit comments

Comments
 (0)