Skip to content

Commit

Permalink
change f to file for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Jan 29, 2024
1 parent 3e7115a commit e57455e
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 @@ -16,8 +16,8 @@

def read_reqs(reqs_name):
deps = []
with open(os.path.join(REQDIR, f"requirements-{reqs_name}.txt"), "r") as f:
for line in f:
with open(os.path.join(REQDIR, f"requirements-{reqs_name}.txt"), "r") as file:
for line in file:
if not line.strip():
continue
deps.append(line)
Expand Down

0 comments on commit e57455e

Please sign in to comment.