mirror of
https://github.com/FAUSheppy/skillbird
synced 2025-12-06 06:51:34 +01:00
clarify status msg
This commit is contained in:
@@ -51,7 +51,7 @@ if __name__ == "__main__":
|
|||||||
cur = datetime.datetime.now()
|
cur = datetime.datetime.now()
|
||||||
percent = int(i/count*100);
|
percent = int(i/count*100);
|
||||||
elapsed = str(cur-start).split(".")[0]
|
elapsed = str(cur-start).split(".")[0]
|
||||||
estRem = str((cur-start)/i*count).split(".")[0]
|
estTot = str((cur-start)/i*count).split(".")[0]
|
||||||
i += 1
|
i += 1
|
||||||
print("Round: {} ({}%) - elapsed: {}, estimated remaining: {}\r".format(
|
print("Round: {} ({}%) - elapsed: {}, estimated total: {}\r".format(
|
||||||
i, percent, elapsed, estRem), end="")
|
i, percent, elapsed, estTot), end="")
|
||||||
|
|||||||
Reference in New Issue
Block a user