-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit makes the changes so that the pre-commit checks pass. Next step is CI.
- Loading branch information
1 parent
3f889d7
commit e613627
Showing
11 changed files
with
48 additions
and
331 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,3 +133,6 @@ dmypy.json | |
|
||
# Generated dynamically | ||
intake_erddap/_version.py | ||
|
||
# vscode | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ dependencies: | |
- isort | ||
- flake8 | ||
- pre-commit | ||
- types-setuptools | ||
- mypy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
from pkg_resources import DistributionNotFound, get_distribution | ||
|
||
from .erddap import ERDDAPSource, ERDDAPSourceAutoPartition, ERDDAPSourceManualPartition | ||
"""intake-erddap package.""" | ||
from .erddap import ERDDAPSource | ||
from .erddap_cat import ERDDAPCatalog | ||
from .version import __version__ | ||
|
||
|
||
__all__ = [ | ||
"ERDDAPSource", | ||
"ERDDAPSourceAutoPartition", | ||
"ERDDAPSourceManualPartition", | ||
"ERDDAPCatalog", | ||
"__version__", | ||
] |
Oops, something went wrong.