Skip to content

Commit 4ef8d87

Browse files
committed
fix: try actually running the new command
Signed-off-by: Yves Bastide <yves@botify.com>
1 parent 8d4a9ee commit 4ef8d87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simpleflow/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def workflow_history(
419419
history = History(raw_history)
420420
if output_format == "raw":
421421
events = []
422-
for event in history.events[:10]:
422+
for event in history.events:
423423
e = {}
424424
for k in ["id", "type", "state", "timestamp", "input", "control", *event.__dict__]:
425425
if k.startswith("_") or k == "raw":

0 commit comments

Comments
 (0)