Fix compatibility with python 3.10

This commit is contained in:
Ruben van de Ven 2023-10-04 21:14:46 +02:00
parent d4261f1c3d
commit d182787c83
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import numpy as np
import pandas as pd
from collections import Sequence, OrderedDict
from collections.abc import Sequence
from collections import OrderedDict
class RingBuffer(Sequence):