moto/moto/compat.py
2014-11-29 22:43:30 -05:00

6 lines
179 B
Python

try:
from collections import OrderedDict # flake8: noqa
except ImportError:
# python 2.6 or earlier, use backport
from ordereddict import OrderedDict # flake8: noqa