This commit is contained in:
2025-11-06 22:54:20 +03:00
parent 92455710ed
commit 4b9e8805bc
2 changed files with 121 additions and 0 deletions

13
functions.py Normal file
View File

@ -0,0 +1,13 @@
import traceback
from shutil import move
from time import sleep
def move_ipa(from_path: str, to_path: str):
while True:
try:
move(from_path, to_path)
return
except Exception:
traceback.print_exc()
sleep(10)