Fix #2076 - use collection ABCs from .abc module

This commit is contained in:
DarkPhoenix
2019-11-07 18:35:14 +03:00
parent 6b3e94729c
commit e6cfd33435
2 changed files with 5 additions and 4 deletions

View File

@@ -17,7 +17,8 @@
# along with eos. If not, see <http://www.gnu.org/licenses/>.
# ===============================================================================
import collections
from collections import MutableMapping
from copy import copy
from math import exp
@@ -96,7 +97,7 @@ class ChargeAttrShortcut:
return return_value or default
class ModifiedAttributeDict(collections.MutableMapping):
class ModifiedAttributeDict(MutableMapping):
overrides_enabled = False
class CalculationPlaceholder: