We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3e178 commit b8fe33dCopy full SHA for b8fe33d
setup.py
@@ -38,7 +38,7 @@ def run(self):
38
# some pip versions bark on comments (e.g. on travis)
39
def read_without_comments(filename):
40
with open(filename) as f:
41
- return [l for l in f.read().splitlines() if not len(l) == 0 and not l.startswith('#')]
+ return [line for line in f.read().splitlines() if not len(line) == 0 and not line.startswith('#')]
42
43
test_required = read_without_comments('test-requirements')
44
0 commit comments