Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions elyra/pipeline/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
from typing import TYPE_CHECKING
from typing import Union

# Prevent a circular reference by importing RuntimePipelineProcessor only during type-checking
if TYPE_CHECKING:
from elyra.pipeline.processor import RuntimePipelineProcessor

from elyra.pipeline.pipeline_constants import DISABLE_NODE_CACHING
from elyra.pipeline.pipeline_constants import ENV_VARIABLES
from elyra.pipeline.pipeline_constants import KUBERNETES_POD_ANNOTATIONS
Expand All @@ -50,6 +46,9 @@
from elyra.util.kubernetes import is_valid_label_key
from elyra.util.kubernetes import is_valid_label_value

if TYPE_CHECKING: # Prevent a circular reference by importing RuntimePipelineProcessor only during type-checking
from elyra.pipeline.processor import RuntimePipelineProcessor

Check warning on line 50 in elyra/pipeline/properties.py

View check run for this annotation

Codecov / codecov/patch

elyra/pipeline/properties.py#L50

Added line #L50 was not covered by tests
Comment thread
caponetto marked this conversation as resolved.
Dismissed


class PropertyInputType:
"""
Expand Down
Loading