Skip to content

Commit 5b2edb1

Browse files
authored
[components] fix import from dagster (#27321)
## Summary & Motivation Fix mistaken import from `dagster` yaml utils instead of local `dagster_dg` yaml utils. ## How I Tested These Changes BK
1 parent 25b1205 commit 5b2edb1

File tree

1 file changed

+2
-2
lines changed
  • python_modules/libraries/dagster-dg/dagster_dg

1 file changed

+2
-2
lines changed

python_modules/libraries/dagster-dg/dagster_dg/docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
import markdown
77
import yaml
8-
from dagster._utils.source_position import SourcePositionTree
9-
from dagster._utils.yaml_utils import parse_yaml_with_source_positions
108

119
from dagster_dg.component import RemoteComponentType
10+
from dagster_dg.yaml_utils import parse_yaml_with_source_positions
11+
from dagster_dg.yaml_utils.source_position import SourcePositionTree
1212

1313
REF_BASE = "#/$defs/"
1414
JSON_SCHEMA_EXTRA_REQUIRED_SCOPE_KEY = "dagster_required_scope"

0 commit comments

Comments
 (0)