diff --git a/custom_components/tplink_deco/api.py b/custom_components/tplink_deco/api.py index 1cb3a4a..18f50a7 100644 --- a/custom_components/tplink_deco/api.py +++ b/custom_components/tplink_deco/api.py @@ -27,7 +27,7 @@ AES_KEY_BYTES = 16 MIN_AES_KEY = 10 ** (AES_KEY_BYTES - 1) -MAX_AES_KEY = (10 ** AES_KEY_BYTES) - 1 +MAX_AES_KEY = (10**AES_KEY_BYTES) - 1 PKCS1_v1_5_HEADER_BYTES = 11 diff --git a/custom_components/tplink_deco/manifest.json b/custom_components/tplink_deco/manifest.json index 4bf3515..01276e7 100644 --- a/custom_components/tplink_deco/manifest.json +++ b/custom_components/tplink_deco/manifest.json @@ -4,7 +4,7 @@ "documentation": "https://github.com/amosyuen/ha-tplink-deco", "issue_tracker": "https://github.com/amosyuen/ha-tplink-deco/issues", "iot_class": "local_polling", - "version": "1.0.0", + "version": "1.0.1", "config_flow": true, "dependencies": [], "codeowners": ["@amosyuen"],