ok it's fixed
This commit is contained in:
parent
437afdcce4
commit
81dc0f7310
19
V4.py
19
V4.py
|
@ -911,19 +911,22 @@ def ChangeColor(task, newcolor):
|
||||||
new = "]".join(old)
|
new = "]".join(old)
|
||||||
progress.update(task,description=new)
|
progress.update(task,description=new)
|
||||||
|
|
||||||
with Progress(
|
|
||||||
|
if CUSTOM_START:
|
||||||
|
CustomStart(Credentials)
|
||||||
|
elif UNBAN:
|
||||||
|
unban2()
|
||||||
|
else:
|
||||||
|
|
||||||
|
with Progress(
|
||||||
TextColumn("[progress.description]{task.description}"),
|
TextColumn("[progress.description]{task.description}"),
|
||||||
BarColumn(),
|
BarColumn(),
|
||||||
TaskProgressColumn(),
|
TaskProgressColumn(),
|
||||||
TimeRemainingColumn(),
|
TimeRemainingColumn(),
|
||||||
TimeElapsedColumn(),
|
TimeElapsedColumn(),
|
||||||
) as p:
|
) as p:
|
||||||
task = modules.progress.dico(p)
|
task = modules.progress.dico(p)
|
||||||
if CUSTOM_START:
|
|
||||||
CustomStart(Credentials)
|
|
||||||
elif UNBAN:
|
|
||||||
unban2()
|
|
||||||
else:
|
|
||||||
for _mail, _password in Credentials:
|
for _mail, _password in Credentials:
|
||||||
#system("pkill -9 firefox")
|
#system("pkill -9 firefox")
|
||||||
print("\n\n")
|
print("\n\n")
|
||||||
|
|
Loading…
Reference in New Issue