Skip to content

Commit

Permalink
Fix: Circular imports prevented pytest to run
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh authored and olethanh committed Apr 10, 2024
1 parent 950d3e8 commit cacb83c
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions src/aleph/vm/orchestrator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
from aleph.vm.version import __version__

from . import (
messages,
metrics,
pubsub,
reactor,
resources,
run,
status,
supervisor,
tasks,
views,
vm,
)

__all__ = (
"__version__",
"messages",
"metrics",
"pubsub",
"reactor",
"resources",
"run",
"status",
"supervisor",
"tasks",
"views",
"vm",
)
__all__ = ("__version__",)

0 comments on commit cacb83c

Please sign in to comment.