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 58709d7 commit fd3684c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions biobb_cp2k/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from . import cp2k
name = "biobb_cp2k"
__all__ = ["cp2k"]
__version__ = "4.2.0"
2 changes: 2 additions & 0 deletions biobb_cp2k/cp2k/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from . import cp2k_run
from . import cp2k_prep
name = "cp2k"
__all__ = ["cp2k_run", "cp2k_prep"]

0 comments on commit fd3684c

Please sign in to comment.