Skip to content

Commit b8bc28f

Browse files
authored
pass with flake8 3.8 (#36)
1 parent ebaa914 commit b8bc28f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_copyright_license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def check_files(paths):
2626
continue
2727
lines = content.splitlines()
2828
has_copyright = \
29-
any(l for l in lines if l.startswith('# Copyright'))
29+
any(line for line in lines if line.startswith('# Copyright'))
3030
has_license = \
3131
'# Licensed under the Apache License, Version 2.0' in lines
3232
if not has_copyright or not has_license:

0 commit comments

Comments
 (0)