summaryrefslogtreecommitdiffstats
path: root/ranger/ext/macrodict.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/ext/macrodict.py')
-rw-r--r--ranger/ext/macrodict.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/macrodict.py b/ranger/ext/macrodict.py
index b4613fbc..924fe5a9 100644
--- a/ranger/ext/macrodict.py
+++ b/ranger/ext/macrodict.py
@@ -15,7 +15,7 @@ def macro_val(thunk, fallback=MACRO_FAIL):
try:
from collections.abc import MutableMapping # pylint: disable=no-name-in-module
except ImportError:
- from collections import MutableMapping
+ from collections import MutableMapping # pylint: disable=deprecated-class
class MacroDict(MutableMapping):