Skip to content
Snippets Groups Projects
Commit 970ef9e2 authored by Florian Obersteiner's avatar Florian Obersteiner :8ball:
Browse files

pkg __init__: revised, added __all__

parent f4b85c9c
No related branches found
No related tags found
1 merge request!15updated normal comments handling
from .dataset import Dataset, StandardNormalComments, Variable, Formats, VariableType
# VERSION
def get_version():
try:
# Python >= 3.8
......@@ -13,8 +11,12 @@ def get_version():
return pkg_resources.get_distribution("icartt").version
__version__ = get_version()
del get_version
# TODO: add __all__ = ("names of exported classes etc.",) ?
# EXPORTED TYPES
from .dataset import Dataset, StandardNormalComments, Variable, Formats, VariableType
__all__ = ("Dataset", "StandardNormalComments", "Variable", "Formats", "VariableType")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment