1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-15 15:07:52 +02:00
This commit is contained in:
J. Nick Koston 2025-10-12 07:48:28 -10:00
parent 6614bed61b
commit 7ae97cc13f
No known key found for this signature in database

View File

@ -261,7 +261,9 @@ def main() -> int:
isolated_count = sum(
1
for comp in all_batched_components
if comp in ISOLATED_COMPONENTS or comp in non_groupable
if comp in ISOLATED_COMPONENTS
or comp in non_groupable
or (directly_changed and comp in directly_changed)
)
groupable_count = actual_components - isolated_count