Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/tplink_deco/api.py
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion custom_components/tplink_deco/manifest.json
Original file line number Diff line number Diff line change
@@ -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"],

0 comments on commit d3f6d91

Please sign in to comment.