Skip to content

Commit

Permalink
avoid static imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Acribbs committed Oct 29, 2024
1 parent 9a6cab1 commit 4f36da4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cgatcore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
from cgatcore import pipeline
from cgatcore import remote
# cgatcore/__init__.py
import importlib

pipeline = importlib.import_module('cgatcore.pipeline')
remote = importlib.import_module('cgatcore.remote')

0 comments on commit 4f36da4

Please sign in to comment.