Skip to content

Commit

Permalink
Fix wrong arg name in Idasen Desk config flow
Browse files Browse the repository at this point in the history
  • Loading branch information
abmantis committed Jun 10, 2024
1 parent d657fea commit 55c2855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/idasen_desk/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async def async_step_user(

desk = Desk(None, monitor_height=False)
try:
await desk.connect(discovery_info.device, auto_reconnect=False)
await desk.connect(discovery_info.device, retry=False)
except AuthFailedError:
errors["base"] = "auth_failed"
except TimeoutError:
Expand Down

0 comments on commit 55c2855

Please sign in to comment.