Skip to content

Commit

Permalink
Merge pull request #168 from sebr/issue-167
Browse files Browse the repository at this point in the history
Fix 500 error when configuring integration
  • Loading branch information
sebr authored Jan 28, 2023
2 parents 9e6aa54 + 5fe5d16 commit b756e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/bhyve/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ async def async_step_init(self, user_input=None):

device_options = {
str(d.get("id")): f'{d.get("name", "Unnamed device")}'
for d in self.devices
for d in devices
if d.get("type") != DEVICE_BRIDGE
}

Expand Down

0 comments on commit b756e23

Please sign in to comment.