Skip to content

Commit

Permalink
MNT: add __all__ to top level module #680
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill888 committed Jul 11, 2023
1 parent cc3e6d0 commit 66dc7ca
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions rioxarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@

import rioxarray.raster_array # noqa
import rioxarray.raster_dataset # noqa
from rioxarray._io import open_rasterio # noqa
from rioxarray._options import set_options # noqa
from rioxarray._show_versions import show_versions # noqa
from rioxarray._io import open_rasterio
from rioxarray._options import set_options
from rioxarray._show_versions import show_versions

__version__ = importlib.metadata.version(__package__)

__all__ = [
"open_rasterio",
"set_options",
"show_versions",
"__author__",
"__version__",
]

0 comments on commit 66dc7ca

Please sign in to comment.