Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximSmolskiy committed Mar 12, 2024
1 parent 22eaaa5 commit e79a480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scheduling/highest_response_ratio_next.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ def calculate_turn_around_time(


def calculate_waiting_time(
process_name: list,
process_name: list, # noqa ARG001
turn_around_time: list,
burst_time: list,
no_of_process: int, # noqa ARG001
no_of_process: int,
) -> list:
"""
Calculate the waiting time of each processes.
Expand Down

0 comments on commit e79a480

Please sign in to comment.