Skip to content

Commit

Permalink
adjust default authentication schema values
Browse files Browse the repository at this point in the history
  • Loading branch information
CM000n committed Feb 14, 2023
1 parent 4799b29 commit b355cc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions custom_components/qss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@

AUTHENTICATION_SCHEMA = vol.Schema(
{
vol.Required(CONF_AUTH_KID, default=None): cv.string,
vol.Required(CONF_AUTH_D_KEY, default=None): cv.string,
vol.Required(CONF_AUTH_X_KEY, default=None): cv.string,
vol.Required(CONF_AUTH_Y_KEY, default=None): cv.string,
vol.Required(CONF_AUTH_KID, default=""): cv.string,
vol.Required(CONF_AUTH_D_KEY, default=""): cv.string,
vol.Required(CONF_AUTH_X_KEY, default=""): cv.string,
vol.Required(CONF_AUTH_Y_KEY, default=""): cv.string,
}
)

Expand Down

0 comments on commit b355cc2

Please sign in to comment.