Skip to content

Commit

Permalink
upgrade __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 committed Jun 8, 2024
1 parent 64283c0 commit 98417c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion brainunit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

__version__ = "0.0.1"

from . import math
from ._base import *
from ._base import __all__ as _base_all
from ._unit_common import *
Expand All @@ -24,5 +25,5 @@
from ._unit_shortcuts import *
from ._unit_shortcuts import __all__ as _std_units_all

__all__ = _common_all + _std_units_all + _constants_all + _base_all
__all__ = ['math'] + _common_all + _std_units_all + _constants_all + _base_all
del _common_all, _std_units_all, _constants_all, _base_all

0 comments on commit 98417c1

Please sign in to comment.