Skip to content

Commit

Permalink
Fix a numba error by __delitem__ in numba 0.57
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaz001 committed May 10, 2023
1 parent 1a46a37 commit fef9cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hftbacktest/proc/proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def process(self, wait_resp):
while i < self.orders_from.__len__():
order, recv_timestamp = self.orders_from[i]
if self.orders_from.frontmost_timestamp == recv_timestamp:
self.orders_from.__delitem__(i)
self.orders_from.delitem(i)

next_timestamp = self._process_recv_order(
order,
Expand Down

0 comments on commit fef9cb0

Please sign in to comment.