Skip to content

Commit

Permalink
update: lazy import for markers.reho
Browse files Browse the repository at this point in the history
  • Loading branch information
synchon committed Sep 26, 2024
1 parent 1d0af24 commit 74cae6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 2 additions & 3 deletions junifer/markers/reho/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
# Authors: Synchon Mandal <s.mandal@fz-juelich.de>
# License: AGPL

from .reho_parcels import ReHoParcels
from .reho_spheres import ReHoSpheres
import lazy_loader as lazy


__all__ = ["ReHoParcels", "ReHoSpheres"]
__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__)
4 changes: 4 additions & 0 deletions junifer/markers/reho/__init__.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__all__ = ["ReHoParcels", "ReHoSpheres"]

from .reho_parcels import ReHoParcels
from .reho_spheres import ReHoSpheres
Empty file added junifer/markers/reho/py.typed
Empty file.

0 comments on commit 74cae6f

Please sign in to comment.