Skip to content

Commit 8cafb31

Browse files
committed
Fix rebase
1 parent bc70e56 commit 8cafb31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/neo4j_graphrag/experimental/pipeline/component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __new__(
4040
run = run_context_method if run_context_method is not None else run_method
4141
if run is None:
4242
raise RuntimeError(
43-
f"Either 'run' or 'run_with_context' must be implemented in component: '{name}'"
43+
f"You must implement either `run` or `run_with_context` in Component '{name}'"
4444
)
4545
sig = inspect.signature(run)
4646
attrs["component_inputs"] = {

0 commit comments

Comments
 (0)