Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[math] Fix numpy array creation methods #1

Merged
merged 5 commits into from
Jun 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
upgrade __init__.py
chaoming0625 committed Jun 8, 2024
commit 98417c1a8ef1dd576de8c9378a86795c22576701
3 changes: 2 additions & 1 deletion brainunit/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
@@ -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