Skip to content

Commit

Permalink
[FEATURE](__init__): Importing submodules when a module is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed Oct 16, 2024
1 parent 17030c6 commit 8db33da
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions biobb_flexdyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from . import flexdyn
name = "biobb_flexdyn"
__all__ = ["flexdyn"]
__version__ = "4.2.0"
8 changes: 8 additions & 0 deletions biobb_flexdyn/flexdyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
from . import concoord_dist
from . import concoord_disco
from . import prody_anm
from . import nolb_nma
from . import imod_imode
from . import imod_imove
from . import imod_imc

name = "flexdyn"
__all__ = ["concoord_dist", "concoord_disco", "prody_anm", "nolb_nma", "imod_imode", "imod_imove", "imod_imc"]

0 comments on commit 8db33da

Please sign in to comment.