Skip to content

Commit

Permalink
fix: fix bug where default schema not schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Sep 15, 2019
1 parent b1c8213 commit 1598c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/alexa_media/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def _show_form(
) -> None:
"""Show the form to the user."""
_LOGGER.debug("show_form %s %s %s %s", step, placeholders, errors, data_schema)
data_schema = data_schema or self.data_schema
data_schema = data_schema or vol.Schema(self.data_schema)
if step == "user":
return self.async_show_form(
step_id=step,
Expand Down

0 comments on commit 1598c52

Please sign in to comment.