Skip to content

Commit

Permalink
Fix flake8 issue in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mschmidt87 committed May 25, 2020
1 parent 4b26607 commit 9decdef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def read_extra_requirements():
extra_requirements = {}
extra_requirements["all"] = []
with open("./extra-requirements.txt") as f:
for l in f:
req = l.replace("\n", " ")
for dep in f:
req = dep.replace("\n", " ")
extra_requirements[req] = [req]
extra_requirements["all"].append(req)

Expand Down

0 comments on commit 9decdef

Please sign in to comment.