Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion xtuml/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
# License along with pyxtuml. If not, see <http://www.gnu.org/licenses/>.
import uuid

import collections
try:
# Python 3.x
import collections.abc
collectionsAbc = collections.abc
except:
# Python 2.7
import collections
collectionsAbc = collections


Expand Down