Skip to content

Commit 6f5e682

Browse files
author
Justin Dybedahl
authored
Fix config flow
1 parent 1c935d9 commit 6f5e682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/redfin/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async def async_step_init(
111111
errors: Dict[str, str] = {}
112112
# Grab all configured propert id's from the entity registry so we can populate the
113113
# multi-select dropdown that will allow a user to remove a property.
114-
entity_registry = await async_get(self.hass)
114+
entity_registry = sync_get(self.hass)
115115
entries = async_entries_for_config_entry(
116116
entity_registry, self.config_entry.entry_id
117117
)

0 commit comments

Comments
 (0)