Skip to content

Commit b8fe33d

Browse files
committed
NOBUG: Fix lint error in setup.py
1 parent 6e3e178 commit b8fe33d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run(self):
3838
# some pip versions bark on comments (e.g. on travis)
3939
def read_without_comments(filename):
4040
with open(filename) as f:
41-
return [l for l in f.read().splitlines() if not len(l) == 0 and not l.startswith('#')]
41+
return [line for line in f.read().splitlines() if not len(line) == 0 and not line.startswith('#')]
4242

4343
test_required = read_without_comments('test-requirements')
4444

0 commit comments

Comments
 (0)