mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-06-21 14:20:17 +08:00
fix: fix variable name or comment errors & fix test_lan error (#678)
Some checks are pending
Some checks are pending
* fix: renamed _url_addr_list to _http_addr_map for clarity * fix: redirected ping command output to DEVNULL * fix: add resource cleanup in test_lan_async
This commit is contained in:
@ -94,7 +94,7 @@ class MIoTNetwork:
|
||||
_main_loop: asyncio.AbstractEventLoop
|
||||
|
||||
_ip_addr_map: dict[str, float]
|
||||
_url_addr_list: dict[str, float]
|
||||
_http_addr_map: dict[str, float]
|
||||
_http_session: aiohttp.ClientSession
|
||||
|
||||
_refresh_interval: int
|
||||
@ -283,8 +283,8 @@ class MIoTNetwork:
|
||||
[
|
||||
'ping', '-c', '1', '-w',
|
||||
str(self._DETECT_TIMEOUT), address]),
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE
|
||||
stdout=subprocess.DEVNULL,
|
||||
stderr=subprocess.DEVNULL
|
||||
)
|
||||
await process.communicate()
|
||||
if process.returncode == 0:
|
||||
|
Reference in New Issue
Block a user