Skip to content

Commit

Permalink
fix: missed await in config_flow (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 authored Mar 17, 2023
1 parent badb670 commit e9ea33b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/openevse/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def _async_try_connect_and_fetch(ip_address: str) -> dict[str, Any]:
)
raise AbortFlow("unknown_error") from ex

charger.ws_disconnect()
await charger.ws_disconnect()

async def async_step_zeroconf(
self, discovery_info: zeroconf.ZeroconfServiceInfo
Expand Down

0 comments on commit e9ea33b

Please sign in to comment.