This commit is contained in:
2025-11-06 22:50:18 +03:00
parent ecdbc7e028
commit fb831e4fab

View File

@ -3,6 +3,7 @@ import getpass
import traceback
from pathlib import Path
from shutil import move
from time import sleep
from aiohttp import ClientTimeout
from httpwrapper import AsyncClientConfig, BaseAsyncClient
@ -24,6 +25,7 @@ def move_ipa(from_path: str, to_path: str):
return
except Exception:
traceback.print_exc()
sleep(10)
class IPAToolClient(BaseAsyncClient):