Skip to content

Commit

Permalink
Remove defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
rroller committed May 25, 2021
1 parent 0171083 commit 0f0508c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/dahua/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ async def _show_config_form(self, user_input): # pylint: disable=unused-argumen
step_id="user",
data_schema=vol.Schema(
{
vol.Required(CONF_USERNAME, default="admin"): str,
vol.Required(CONF_USERNAME): str,
vol.Required(CONF_PASSWORD): str,
vol.Required(CONF_ADDRESS, default="192.168.1.213"): str,
vol.Required(CONF_ADDRESS): str,
vol.Required(CONF_PORT, default="80"): str,
vol.Required(CONF_RTSP_PORT, default="544"): str,
vol.Required(CONF_STREAMS, default=STREAMS[0]): vol.In(STREAMS),
Expand Down

0 comments on commit 0f0508c

Please sign in to comment.