Skip to content

Commit

Permalink
Fix requirement meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jan 2, 2024
1 parent 9f766e6 commit 29f4fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_requirements(root, requirements):

install_requires = []
with open(os.path.join(root, requirements)) as f:
install_requires = [install_requires.append(line.strip()) for line in f if not line.startswith("#")]
install_requires = [line.strip() for line in f if not line.startswith("#")]
return install_requires


Expand Down

0 comments on commit 29f4fa3

Please sign in to comment.