Skip to content

Commit

Permalink
fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
siyangqiu committed Aug 13, 2024
1 parent f56c457 commit 21c6b54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agentops/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ def cli():
if args.branch_name:
fetch_time_travel_id(args.branch_name)
if args.on:
set_time_travel_active_state("on")
set_time_travel_active_state(True)

Check warning on line 35 in agentops/cli.py

View check run for this annotation

Codecov / codecov/patch

agentops/cli.py#L35

Added line #L35 was not covered by tests
if args.off:
set_time_travel_active_state("off")
set_time_travel_active_state(False)

Check warning on line 37 in agentops/cli.py

View check run for this annotation

Codecov / codecov/patch

agentops/cli.py#L37

Added line #L37 was not covered by tests

0 comments on commit 21c6b54

Please sign in to comment.