Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
supersergiy committed Nov 30, 2023
1 parent a113124 commit a640a9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion zetta_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ def try_load_train_inference(): # pragma: no cover
except ImportError:
...

def try_load_submodules(): # pragma: no cover

def try_load_submodules(): # pragma: no cover
try:
from . import alignment
except ImportError:
...


def load_inference_modules():
from . import (
augmentations,
Expand All @@ -50,6 +52,7 @@ def load_inference_modules():
from .layer import volumetric
from .layer.volumetric import cloudvol
from .message_queues import sqs

try_load_submodules()


Expand All @@ -65,6 +68,7 @@ def load_training_modules():
)
from .layer import volumetric
from .layer.volumetric import cloudvol

try_load_submodules()


Expand Down

0 comments on commit a640a9d

Please sign in to comment.