Fix PyLint warning

This commit is contained in:
Ivan Kravets
2016-06-18 01:15:15 +03:00
parent 2b88ef134b
commit 53bd1df8e5

View File

@ -159,7 +159,7 @@ def ProcessUnFlags(env, flags):
for key in parsed_flags.keys():
cur_flags = set(env.get(key, []))
for item in (cur_flags & all_flags):
for item in cur_flags & all_flags:
while item in env[key]:
env[key].remove(item)