Skip to content

Commit

Permalink
fix: config flow missing storage default
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 committed Dec 4, 2024
1 parent dd73594 commit 11415a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/mail_and_packages/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def _get_default(key: str, fallback_default: Any = None) -> None:

return vol.Schema(
{
vol.Required(CONF_STORAGE, default=_get_default(CONF_STORAGE)): cv.string,
vol.Required(CONF_STORAGE, default=_get_default(CONF_STORAGE, DEFAULT_STORAGE)): cv.string,
}
)

Expand Down

0 comments on commit 11415a8

Please sign in to comment.