moto/moto/compat.py

6 lines
179 B
Python
Raw Normal View History

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