Skip to content

Commit

Permalink
fix flake8 complaining about loop variable reassigned
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Jul 31, 2023
1 parent df8a335 commit 8773d0c
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 @@ -71,8 +71,8 @@
]
for name, extras in dep_extras.items():
if isinstance(extras, dict):
for marker, extras in extras.items():
install_requires.append(f"{name}[{extras}]{dep_versions[name]}; {marker}")
for marker, ext in extras.items():
install_requires.append(f"{name}[{ext}]{dep_versions[name]}; {marker}")
elif isinstance(extras, str):
install_requires.append(f"{name}[{extras}]{dep_versions[name]}")
else:
Expand Down

0 comments on commit 8773d0c

Please sign in to comment.