Skip to content

Commit

Permalink
Add __all__ to __init__.py (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jun 6, 2024
1 parent c8c9ee1 commit af3e8d0
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions h5io_browser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
from h5io_browser.pointer import Pointer # noqa
from h5io_browser.base import ( # noqa
delete_item, # noqa
list_hdf, # noqa
read_dict_from_hdf, # noqa
write_dict_to_hdf, # noqa
) # noqa
from h5io_browser.pointer import Pointer
from h5io_browser.base import (
delete_item,
list_hdf,
read_dict_from_hdf,
write_dict_to_hdf,
)

from ._version import get_versions

# Set version of h5io_browser
__version__ = get_versions()["version"]
__all__ = [
Pointer,
delete_item,
list_hdf,
read_dict_from_hdf,
write_dict_to_hdf,
]

0 comments on commit af3e8d0

Please sign in to comment.