diff options
| author | J08nY | 2022-04-04 12:59:25 +0200 |
|---|---|---|
| committer | J08nY | 2022-04-04 12:59:25 +0200 |
| commit | 6c0fd2ebf5ef939120201950727b94b47ec38d9a (patch) | |
| tree | c714378db1b20058ba0f28e4da5240efb87b5745 | |
| parent | 577df62aab9785c248a3a6b01d4f94b7370e5ea2 (diff) | |
| download | pyecsca-6c0fd2ebf5ef939120201950727b94b47ec38d9a.tar.gz pyecsca-6c0fd2ebf5ef939120201950727b94b47ec38d9a.tar.zst pyecsca-6c0fd2ebf5ef939120201950727b94b47ec38d9a.zip | |
Fix collections on Python 3.10
| -rw-r--r-- | pyecsca/sca/trace_set/hdf5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/sca/trace_set/hdf5.py b/pyecsca/sca/trace_set/hdf5.py index 63620c3..dabb266 100644 --- a/pyecsca/sca/trace_set/hdf5.py +++ b/pyecsca/sca/trace_set/hdf5.py @@ -6,7 +6,7 @@ are operated on are in memory. This is very useful for working with huge sets of """ import pickle import uuid -from collections import MutableMapping +from collections.abc import MutableMapping from io import RawIOBase, BufferedIOBase from pathlib import Path from typing import Union, Optional, List, BinaryIO |
