From 10d3b6c6a1f298ae8262500d1851c1548f874fb3 Mon Sep 17 00:00:00 2001 From: Alessandro Amici Date: Sun, 15 Oct 2023 20:12:25 +0200 Subject: [PATCH] Fix accessing __version__ --- cf2cdm/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cf2cdm/__init__.py b/cf2cdm/__init__.py index e72c68e..43962db 100644 --- a/cf2cdm/__init__.py +++ b/cf2cdm/__init__.py @@ -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"]