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 4142515 commit c0cdc9cCopy full SHA for c0cdc9c
datajoint/external.py
@@ -1,5 +1,5 @@
1
from pathlib import Path, PurePosixPath, PureWindowsPath
2
-from collections import Mapping
+from collections.abc import Mapping
3
from tqdm import tqdm
4
from .settings import config
5
from .errors import DataJointError, MissingExternalFile
datajoint/settings.py
@@ -58,7 +58,7 @@
58
}
59
60
61
-class Config(collections.MutableMapping):
+class Config(collections.abc.MutableMapping):
62
63
instance = None
64
0 commit comments