Skip to content

Commit

Permalink
Add missing imports; enamed pipeline test module
Browse files Browse the repository at this point in the history
  • Loading branch information
lucekdudek committed Jul 25, 2023
1 parent 951a496 commit 7a2457e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions golem/managers/activity/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from golem.managers.activity.defaults import default_on_activity_start, default_on_activity_stop
from golem.managers.activity.mixins import ActivityPrepareReleaseMixin
from golem.managers.activity.pool import ActivityPoolManager
from golem.managers.activity.single_use import SingleUseActivityManager

__all__ = (
"ActivityPoolManager",
"SingleUseActivityManager",
"default_on_activity_start",
"default_on_activity_stop",
"ActivityPrepareReleaseMixin",
"ActivityPoolManager",
"SingleUseActivityManager",
)
2 changes: 2 additions & 0 deletions golem/managers/work/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from golem.managers.work.asynchronous import AsynchronousWorkManager
from golem.managers.work.mixins import WorkManagerPluginsMixin
from golem.managers.work.plugins import redundancy_cancel_others_on_first_done, retry, work_plugin
from golem.managers.work.sequential import SequentialWorkManager

__all__ = (
"AsynchronousWorkManager",
"WorkManagerPluginsMixin",
"SequentialWorkManager",
"work_plugin",
"redundancy_cancel_others_on_first_done",
Expand Down
File renamed without changes.

0 comments on commit 7a2457e

Please sign in to comment.