back to not making breaks

This commit is contained in:
Yannick Stephan
2025-02-16 15:08:50 +01:00
parent 0a8c94a1e0
commit 0e7aff96bb
10 changed files with 58 additions and 11 deletions

View File

@@ -34,6 +34,11 @@ if sys.platform.startswith("win"):
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
import pipmaster as pm
if not pm.is_installed("asyncpg"):
pm.install("asyncpg")
try:
import asyncpg
from tqdm.asyncio import tqdm as tqdm_async