Fix up double negative logic

This commit is contained in:
Masen Furer 2024-03-14 18:48:40 -07:00
parent f3ef8b280e
commit 67624b48df
No known key found for this signature in database
GPG Key ID: 2AE2BD5531FF94F4

View File

@ -1356,7 +1356,7 @@ class CustomComponent(Component):
ImportVar(
tag=None,
render=False,
install=not any(not imp.install for imp in imps),
install=any(imp.install for imp in imps),
),
]
for comp in self.get_custom_components()