Commit 3744e23d authored by Jason R. Coombs's avatar Jason R. Coombs

Reindent to remove trailing comment

parent 4e960934
......@@ -197,8 +197,12 @@ class build_py(orig.build_py, Mixin2to3):
)
seen = {}
return [
f for f in files if f not in bad
and f not in seen and seen.setdefault(f, 1) # ditch dupes
fn
for fn in files
if fn not in bad
# ditch dupes
and fn not in seen
and seen.setdefault(fn, 1)
]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment