Skip to content

Commit 22fe98f

Browse files
committed
small adjustment for use query args example
1 parent e162730 commit 22fe98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/python/use-query-args.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ def example_query(value: int, other_value: bool = False): ...
77

88
@component
99
def my_component():
10-
query = use_query(example_query, kwargs={"value": 123, "other_value": True})
10+
query = use_query(example_query, {"value": 123, "other_value": True})
1111

1212
return str(query.data)

0 commit comments

Comments
 (0)