Fix PEP8: E127 continuation line over-indented

for visual indent
This commit is contained in:
stv
2014-11-09 12:34:49 -08:00
parent 6763c5dd74
commit 4d30aedf4e
10 changed files with 73 additions and 38 deletions

View File

@@ -59,8 +59,10 @@ class TrackMiddleware(object):
if string in get_dict:
get_dict[string] = '*' * 8
event = {'GET': dict(get_dict),
'POST': dict(post_dict)}
event = {
'GET': dict(get_dict),
'POST': dict(post_dict),
}
# TODO: Confirm no large file uploads
event = json.dumps(event)