Skip to content

Commit

Permalink
fixed: house number selector only showed the first char
Browse files Browse the repository at this point in the history
  • Loading branch information
vigonotion authored Dec 4, 2024
1 parent cd81e45 commit 14adf30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def async_step_user(self, user_input=None):
self._errors["street"] = "street_not_found"
except StreetNumberNotFoundException as error:
self._errors["number"] = "number_not_found"
numbers = [x[0] for x in error.args[1]]
numbers = [x for x in error.args[1]]
return self.async_show_form(
step_id="user",
data_schema=vol.Schema(
Expand Down

0 comments on commit 14adf30

Please sign in to comment.