python-aidot 0.3.48__tar.gz → 0.3.49__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_aidot-0.3.48 → python_aidot-0.3.49}/PKG-INFO +1 -1
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/client.py +1 -1
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/device_client.py +1 -1
- {python_aidot-0.3.48 → python_aidot-0.3.49}/python_aidot.egg-info/PKG-INFO +1 -1
- {python_aidot-0.3.48 → python_aidot-0.3.49}/setup.py +1 -1
- {python_aidot-0.3.48 → python_aidot-0.3.49}/LICENSE +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/README.md +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/__init__.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/aes_utils.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/const.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/discover.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/exceptions.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/aidot/login_const.py +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/python_aidot.egg-info/SOURCES.txt +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/python_aidot.egg-info/dependency_links.txt +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/python_aidot.egg-info/requires.txt +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/python_aidot.egg-info/top_level.txt +0 -0
- {python_aidot-0.3.48 → python_aidot-0.3.49}/setup.cfg +0 -0
|
@@ -77,7 +77,7 @@ class AidotClient:
|
|
|
77
77
|
password: str | None = None,
|
|
78
78
|
token: dict | None = None,
|
|
79
79
|
) -> None:
|
|
80
|
-
_LOGGER.
|
|
80
|
+
_LOGGER.warning(f"Aidot Client Version: v0.3.49")
|
|
81
81
|
self.session = session
|
|
82
82
|
self.username = username
|
|
83
83
|
self.password = password
|
|
@@ -258,7 +258,7 @@ class DeviceClient(object):
|
|
|
258
258
|
except (BrokenPipeError, ConnectionResetError, asyncio.IncompleteReadError) as e:
|
|
259
259
|
_LOGGER.error(f"{self._TAG}:read status error {e}")
|
|
260
260
|
# await self.reset()
|
|
261
|
-
|
|
261
|
+
asyncio.get_running_loop().call_soon(
|
|
262
262
|
lambda: asyncio.create_task(self.reset())
|
|
263
263
|
)
|
|
264
264
|
return
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|