Cleanup some style

This commit is contained in:
Steve Pulec 2013-12-29 08:59:07 -05:00
commit c1f224954e
7 changed files with 28 additions and 16 deletions

View file

@ -3,10 +3,10 @@ import datetime
import json
try:
from collections import OrderedDict
from collections import OrderedDict
except ImportError:
# python 2.6 or earlier, use backport
from ordereddict import OrderedDict
# python 2.6 or earlier, use backport
from ordereddict import OrderedDict
from moto.core import BaseBackend