Skip to content

Commit 78f8541

Browse files
committed
fix: remove unsupported run history offset from example
Keep the runnable usage example aligned with the current list_run_history helper signature.
1 parent 747ca1c commit 78f8541

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/basic_usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def main() -> None:
1515
print(item.to_dict())
1616

1717
print("run history:")
18-
for item in client.list_run_history(limit=5, offset=0):
18+
for item in client.list_run_history(limit=5):
1919
print(item.to_dict())
2020

2121
client.close()

0 commit comments

Comments
 (0)