Skip to content

Commit

Permalink
Bump py-dormakaba-dkey to 1.0.3 (#88924)
Browse files Browse the repository at this point in the history
* Bump py-dormakaba-dkey to 1.0.3

* Log unexpected errors in config flow
  • Loading branch information
emontnemery authored Feb 28, 2023
1 parent 69ce698 commit ad55a5d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion homeassistant/components/dormakaba_dkey/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ async def async_step_associate(

try:
association_data = await lock.associate(user_input["activation_code"])
except BleakError:
except BleakError as err:
_LOGGER.warning("BleakError", exc_info=err)
return self.async_abort(reason="cannot_connect")
except dkey_errors.InvalidActivationCode:
errors["base"] = "invalid_code"
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/dormakaba_dkey/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"documentation": "https://www.home-assistant.io/integrations/dormakaba_dkey",
"integration_type": "device",
"iot_class": "local_polling",
"requirements": ["py-dormakaba-dkey==1.0.2"]
"requirements": ["py-dormakaba-dkey==1.0.3"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ py-canary==0.5.3
py-cpuinfo==8.0.0

# homeassistant.components.dormakaba_dkey
py-dormakaba-dkey==1.0.2
py-dormakaba-dkey==1.0.3

# homeassistant.components.melissa
py-melissa-climate==2.1.4
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ py-canary==0.5.3
py-cpuinfo==8.0.0

# homeassistant.components.dormakaba_dkey
py-dormakaba-dkey==1.0.2
py-dormakaba-dkey==1.0.3

# homeassistant.components.melissa
py-melissa-climate==2.1.4
Expand Down

0 comments on commit ad55a5d

Please sign in to comment.