pep8: Fix E502 violations

This commit is contained in:
bulat22101 2016-12-03 17:07:49 +00:00 committed by Tim Abbott
parent 25a8315f71
commit dc48a41efe
5 changed files with 7 additions and 7 deletions

View file

@ -208,9 +208,9 @@ def process_new_events():
"""
# In task queries, Asana only exposes IDs for projects and users, so we need
# to look up the mappings.
projects = dict((elt["id"], elt["name"]) for elt in \
projects = dict((elt["id"], elt["name"]) for elt in
fetch_from_asana("/projects")["data"])
users = dict((elt["id"], elt["name"]) for elt in \
users = dict((elt["id"], elt["name"]) for elt in
fetch_from_asana("/users")["data"])
cutoff = since()