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 77645ca commit 52763cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions biobb_godmd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from . import godmd
name = "biobb_godmd"
__all__ = ["godmd"]
__version__ = "4.2.0"
2 changes: 2 additions & 0 deletions biobb_godmd/godmd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from . import godmd_run
from . import godmd_prep
name = "godmd"
__all__ = ["godmd_run", "godmd_prep"]

0 comments on commit 52763cb

Please sign in to comment.