Skip to content

Commit 9d68bcf

Browse files
committed
Fix isort errors
1 parent 42866c5 commit 9d68bcf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

scheduling/round_robin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
In Round Robin each process is assigned a fixed time slot in a cyclic way.
44
https://en.wikipedia.org/wiki/Round-robin_scheduling
55
"""
6-
from typing import List
76
from statistics import mean
7+
from typing import List
88

99

1010
def calculate_waiting_times(burst_times: List[int]) -> List[int]:

scheduling/shortest_job_first.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Please use spaces to separate times entered.
55
"""
66
from typing import List
7+
78
import pandas as pd
89

910

0 commit comments

Comments
 (0)