Skip to content

Commit

Permalink
Attempt to fix new user setup errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cloneofghosts authored Feb 7, 2024
1 parent 7e3ceec commit 6b7826f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/pirateweather/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def async_step_user(self, user_input=None):
if user_input is not None:
latitude = user_input[CONF_LATITUDE]
longitude = user_input[CONF_LONGITUDE]
forecastMode = user_input[CONF_MODE]
forecastMode = "daily"
forecastPlatform = user_input[PW_PLATFORM]
entityNamee = user_input[CONF_NAME]

Expand Down

0 comments on commit 6b7826f

Please sign in to comment.