Skip to content

Commit 1a1a94b

Browse files
committed
cp
1 parent 2a5b9b1 commit 1a1a94b

File tree

2 files changed

+2
-2
lines changed
  • examples/experimental/components/examples/hello_world_deployment/code_locations/hello_world/hello_world
  • python_modules/libraries/dagster-components/dagster_components/core

2 files changed

+2
-2
lines changed

examples/experimental/components/examples/hello_world_deployment/code_locations/hello_world/hello_world/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)
88

99
defs = build_component_defs(
10-
path=Path(__file__).parent.parent,
10+
code_location_path=Path(__file__).parent.parent,
1111
registry=ComponentRegistry(
1212
{"pipes_subprocess_script_collection": PipesSubprocessScriptCollection}
1313
),

python_modules/libraries/dagster-components/dagster_components/core/component_decl_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ def path_to_decl_node(path: Path) -> Optional[ComponentDeclNode]:
4747
if component:
4848
subs.append(component)
4949

50-
return ComponentFolder(path=path, sub_decls=subs) if subs else None
50+
return ComponentFolder(path=path, sub_decls=subs)

0 commit comments

Comments
 (0)