-
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 cleans up the project through the pre-commit pipeline.
- Loading branch information
1 parent
73f4544
commit 3f889d7
Showing
13 changed files
with
220 additions
and
131 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
Binary file not shown.
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,3 +1,3 @@ | ||
numpydoc | ||
sphinx | ||
sphinx_rtd_theme | ||
numpydoc |
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,14 @@ | ||
from pkg_resources import DistributionNotFound, get_distribution | ||
|
||
import intake | ||
from .erddap import (ERDDAPSource, ERDDAPSourceAutoPartition, | ||
ERDDAPSourceManualPartition) | ||
from .erddap import ERDDAPSource, ERDDAPSourceAutoPartition, ERDDAPSourceManualPartition | ||
from .erddap_cat import ERDDAPCatalog | ||
from .version import __version__ | ||
|
||
|
||
from pkg_resources import DistributionNotFound, get_distribution | ||
|
||
try: | ||
__version__ = get_distribution("model_catalogs").version | ||
except DistributionNotFound: | ||
# package is not installed | ||
__version__ = "unknown" | ||
__all__ = [ | ||
"ERDDAPSource", | ||
"ERDDAPSourceAutoPartition", | ||
"ERDDAPSourceManualPartition", | ||
"ERDDAPCatalog", | ||
"__version__", | ||
] |
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
Oops, something went wrong.