Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
vyokky committed Jun 28, 2024
1 parent cfb87c1 commit e8e97ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion documents/docs/project/round.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def run(self) -> None:

# If the subtask ends, capture the last snapshot of the application.
if self.state.is_subtask_end():
time.sleep(3)
time.sleep(configs["SLEEP_TIME"])
self.capture_last_snapshot(sub_round_id=self.subtask_amount)
self.subtask_amount += 1

Expand Down
2 changes: 1 addition & 1 deletion ufo/module/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def run(self) -> None:

# If the subtask ends, capture the last snapshot of the application.
if self.state.is_subtask_end():
time.sleep(3)
time.sleep(configs["SLEEP_TIME"])
self.capture_last_snapshot(sub_round_id=self.subtask_amount)
self.subtask_amount += 1

Expand Down

0 comments on commit e8e97ea

Please sign in to comment.