Files

7 lines
151 B
Python
Raw Permalink Normal View History

2024-08-27 20:33:44 +02:00
try:
# python 3
from collections.abc import MutableMapping
except ImportError:
# python 2
from collections import MutableMapping