Skip to content

Commit

Permalink
Fix formatting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
sukritkalra committed Apr 12, 2024
1 parent c563d61 commit d9125db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion schedulers/tetrisched_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,9 @@ def construct_task_strl(
# choice of this Task, and collate them under a MaxExpression.
task_choose_expressions = []
choice_placement_times_and_rewards = []
for placement_time, reward_for_this_placement in sorted(time_discretizations):
for placement_time, reward_for_this_placement in sorted(
time_discretizations
):
if placement_time < current_time:
# If the placement time is in the past, then we cannot
# place the task.
Expand Down

0 comments on commit d9125db

Please sign in to comment.