pep8: Fix E502 violations
This commit is contained in:
parent
25a8315f71
commit
dc48a41efe
5 changed files with 7 additions and 7 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue