1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Adjust scripts for compatibility with Python 3.14 (#146774)

This commit is contained in:
Marc Mueller
2025-06-14 03:54:25 +02:00
committed by GitHub
parent cdb2b407be
commit 3d2dca5f0c
2 changed files with 2 additions and 4 deletions

View File

@@ -46,10 +46,8 @@ def run(args: list[str]) -> int:
config_dir = extract_config_dir()
loop = asyncio.get_event_loop()
if not is_virtual_env():
loop.run_until_complete(async_mount_local_lib_path(config_dir))
asyncio.run(async_mount_local_lib_path(config_dir))
_pip_kwargs = pip_kwargs(config_dir)