forked from platformio/platformio-core
Fix PyLint "line too long" warning
This commit is contained in:
@ -35,7 +35,8 @@ class LibBuilderFactory(object):
|
|||||||
clsname = "PlatformIOLibBuilder"
|
clsname = "PlatformIOLibBuilder"
|
||||||
else:
|
else:
|
||||||
env_frameworks = [
|
env_frameworks = [
|
||||||
f.lower().strip() for f in env.get("PIOFRAMEWORK", "").split(",")]
|
f.lower().strip()
|
||||||
|
for f in env.get("PIOFRAMEWORK", "").split(",")]
|
||||||
used_frameworks = LibBuilderFactory.get_used_frameworks(env, path)
|
used_frameworks = LibBuilderFactory.get_used_frameworks(env, path)
|
||||||
common_frameworks = set(env_frameworks) & set(used_frameworks)
|
common_frameworks = set(env_frameworks) & set(used_frameworks)
|
||||||
if common_frameworks:
|
if common_frameworks:
|
||||||
|
Reference in New Issue
Block a user