We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7805f2 commit 78a0d23Copy full SHA for 78a0d23
src/queue.py
@@ -22,7 +22,7 @@ def process(self):
22
def __process_arrival_times(self):
23
self.__arrival_times = np.copy(self.__inter_arrival_times)
24
for index, value in enumerate(self.__arrival_times):
25
- if index is not 0:
+ if index != 0:
26
self.__arrival_times[index] += self.__arrival_times[index-1]
27
28
def __process_departure_times(self):
0 commit comments