moto/moto/compat.py

6 lines
179 B
Python
Raw Normal View History

2014-11-30 03:43:30 +00:00
try:
from collections import OrderedDict # flake8: noqa
except ImportError:
# python 2.6 or earlier, use backport
from ordereddict import OrderedDict # flake8: noqa