Skip to content

Commit

Permalink
Replace pesky double-quotes with single ones
Browse files Browse the repository at this point in the history
  • Loading branch information
saxbophone committed Oct 31, 2018
1 parent b0536a5 commit c8b626b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def parse_requirements(filepath):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filepath))
return [line for line in lineiter if line and not line.startswith("#")]
return [line for line in lineiter if line and not line.startswith('#')]


def retrieve_deps(filepath):
Expand Down

0 comments on commit c8b626b

Please sign in to comment.