diff --git a/xtuml/tools.py b/xtuml/tools.py index 285c0b9..49ba78c 100644 --- a/xtuml/tools.py +++ b/xtuml/tools.py @@ -17,12 +17,13 @@ # License along with pyxtuml. If not, see . import uuid -import collections try: # Python 3.x + import collections.abc collectionsAbc = collections.abc except: # Python 2.7 + import collections collectionsAbc = collections