We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a3765 commit 23a8cceCopy full SHA for 23a8cce
custom_components/spook/ectoplasms/homeassistant/services/list_filtered_entities.py
@@ -452,7 +452,8 @@ def _matches_basic_filters(
452
integrations = filters.get("integrations")
453
if integrations and entity_entry.platform not in integrations:
454
return False
455
- if labels_filter := filters.get("labels"):
+ labels_filter = filters.get("labels")
456
+ if labels_filter:
457
entity_label_ids = {
458
label["label_id"] for label in entity_data.get("labels", [])
459
}
0 commit comments