Skip to content

Commit

Permalink
NF: Add lazy_loader feature in FURY
Browse files Browse the repository at this point in the history
  • Loading branch information
WassCodeur committed Jul 4, 2024
1 parent 1f34348 commit f486b24
Show file tree
Hide file tree
Showing 16 changed files with 787 additions and 114 deletions.
11 changes: 11 additions & 0 deletions fury/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,19 @@

import warnings

import lazy_loader as lazy

from fury.pkg_info import __version__, pkg_commit_hash

__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__)

__all__ += [
"__version__",
"disable_warnings",
"enable_warnings",
"get_info",
]


def get_info(verbose=False):
"""Return dict describing the context of this package.
Expand Down
Loading

0 comments on commit f486b24

Please sign in to comment.