From 53bd1df8e5c59e0dfb3d6ff0c8f01a2c872b30c6 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 18 Jun 2016 01:15:15 +0300 Subject: [PATCH] Fix PyLint warning --- platformio/builder/tools/platformio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/builder/tools/platformio.py b/platformio/builder/tools/platformio.py index 22e7dc94..1c7743fe 100644 --- a/platformio/builder/tools/platformio.py +++ b/platformio/builder/tools/platformio.py @@ -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)