Skip to content

Commit e79a480

Browse files
committed
Fix
1 parent 22eaaa5 commit e79a480

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: scheduling/highest_response_ratio_next.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ def calculate_turn_around_time(
7474

7575

7676
def calculate_waiting_time(
77-
process_name: list,
77+
process_name: list, # noqa ARG001
7878
turn_around_time: list,
7979
burst_time: list,
80-
no_of_process: int, # noqa ARG001
80+
no_of_process: int,
8181
) -> list:
8282
"""
8383
Calculate the waiting time of each processes.

0 commit comments

Comments
 (0)