Skip to content

Commit

Permalink
Fix 227
Browse files Browse the repository at this point in the history
Fix flake 8 error
  • Loading branch information
devashish-gaikwad committed May 13, 2021
1 parent 23e0e5c commit 7e23be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipreqs/pipreqs.py
Expand Up @@ -161,8 +161,8 @@ def get_all_imports(
return list(packages - data)


def filter_line(l):
return len(l) > 0 and l[0] != "#"
def filter_line(line):
return len(line) > 0 and line[0] != "#"


def generate_requirements_file(path, imports):
Expand Down

0 comments on commit 7e23be2

Please sign in to comment.