Skip to content

Commit

Permalink
Merge 17325b4 into 469036e
Browse files Browse the repository at this point in the history
  • Loading branch information
planes committed Dec 13, 2022
2 parents 469036e + 17325b4 commit 4036aba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion trunk/SUAVE/Plugins/pint/compat.py
Expand Up @@ -13,7 +13,10 @@

import sys

from collections import MutableMapping
try:
from collections import MutableMapping
except:
from collections.abc import MutableMapping
if sys.version_info < (3, 0):
from thread import get_ident
elif sys.version_info < (3, 3):
Expand Down
5 changes: 4 additions & 1 deletion trunk/SUAVE/Plugins/pint/quantity.py
Expand Up @@ -12,7 +12,10 @@
import copy
import operator
import functools
from collections import Iterable
try:
from collections import Iterable
except:
from collections.abc import Iterable

from .unit import DimensionalityError, UnitsContainer, UnitDefinition, UndefinedUnitError
from .measurement import Measurement
Expand Down

0 comments on commit 4036aba

Please sign in to comment.