Skip to content

Commit

Permalink
Fix accessing __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Oct 15, 2023
1 parent 3354ff7 commit 10d3b6c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cf2cdm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
# Local copy or not installed with setuptools
__version__ = "999"

__all__ = ["__version__"]

from .cfcoords import translate_coords
from .datamodels import CDS, ECMWF

__all__ = ["CDS", "ECMWF", "translate_coords"]
__all__ = ["CDS", "ECMWF", "__version__", "translate_coords"]

0 comments on commit 10d3b6c

Please sign in to comment.