mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Typo fix
This commit is contained in:
@ -149,7 +149,8 @@ def ProcessFlags(env, flags):
|
|||||||
def ProcessUnFlags(env, flags):
|
def ProcessUnFlags(env, flags):
|
||||||
if not flags:
|
if not flags:
|
||||||
return
|
return
|
||||||
flags = " ".join(flags)
|
if isinstance(flags, list):
|
||||||
|
flags = " ".join(flags)
|
||||||
parsed_flags = env.ParseFlags(flags)
|
parsed_flags = env.ParseFlags(flags)
|
||||||
all_flags = []
|
all_flags = []
|
||||||
for items in parsed_flags.values():
|
for items in parsed_flags.values():
|
||||||
|
Reference in New Issue
Block a user