Skip to content

Commit 736e305

Browse files
authored
Fixes pylint issue.
1 parent 09b41a8 commit 736e305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler_opt/rl/compilation_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def get_command_line_for_bundle(
102102
option_iterator = iter(f.read().split('\0'))
103103
option = next(option_iterator, None)
104104
while option:
105-
if any([option.startswith(flag) for flag in delete_flags]):
105+
if any(option.startswith(flag) for flag in delete_flags):
106106
if '=' not in option:
107107
next(option_iterator, None)
108108
else:

0 commit comments

Comments
 (0)