Skip to content

Commit

Permalink
fix: hotfix regression due to new firmware upgrade (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
petretiandrea authored Dec 18, 2023
1 parent d728515 commit 7a50ef9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion custom_components/tapo/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ async def _try_setup_api(
client = TapoClient.create(
credential, address=host, port=port, http_session=session
)
await client.initialize()
return client
except TapoException as error:
self._raise_from_tapo_exception(error)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/tapo/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"iot_class": "local_polling",
"documentation": "https://github.com/petretiandrea/home-assistant-tapo-p100",
"issue_tracker": "https://github.com/petretiandrea/home-assistant-tapo-p100/issues",
"requirements": ["plugp100==3.14.1"],
"requirements": ["plugp100==4.0.1"],
"dependencies": [],
"integration_type": "device",
"codeowners": ["@petretiandrea"]
Expand Down
1 change: 0 additions & 1 deletion custom_components/tapo/setup_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ async def connect_tapo_client(
api = TapoClient.create(
credentials, address=host, port=port, http_session=session
)
await api.initialize()
return api


Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
homeassistant==2023.8.3
plugp100==3.14.1
plugp100==4.0.1
pre-commit==3.3.3
reorder-python-imports==3.10.0
flake8==6.1.0
Expand Down

0 comments on commit 7a50ef9

Please sign in to comment.