moto/moto/compat.py
2017-02-23 21:41:05 -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