Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz-roboflow committed Nov 28, 2024
1 parent 8e0144a commit a4f871e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
load_blocks,
load_kinds,
)
from inference.enterprise.workflows.enterprise_steps.loader import (
load_enterprise_blocks,
)
from inference.core.workflows.errors import (
PluginInterfaceError,
PluginLoadingError,
Expand All @@ -45,6 +42,9 @@
BLOCK_SOURCE,
)
from inference.core.workflows.prototypes.block import WorkflowBlock
from inference.enterprise.workflows.enterprise_steps.loader import (
load_enterprise_blocks,
)

WORKFLOWS_PLUGINS_ENV = "WORKFLOWS_PLUGINS"
WORKFLOWS_CORE_PLUGIN_NAME = "workflows_core"
Expand Down
4 changes: 3 additions & 1 deletion inference/enterprise/workflows/enterprise_steps/loader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from typing import List, Type

from inference.enterprise.workflows.enterprise_steps.sinks.opc_writer.v1 import OPCWriterSinkBlockV1
from inference.core.workflows.prototypes.block import WorkflowBlock
from inference.enterprise.workflows.enterprise_steps.sinks.opc_writer.v1 import (
OPCWriterSinkBlockV1,
)


def load_enterprise_blocks() -> List[Type[WorkflowBlock]]:
Expand Down

0 comments on commit a4f871e

Please sign in to comment.