removed unneeded dependencies

This commit is contained in:
Christoph J. Scherr 2023-04-16 17:30:32 +02:00
parent a47eea6308
commit c6d9a2a4be
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
#!/bin/env python3
from time import localtime, sleep, struct_time, time
import time
import datetime
import sys
import time
class stopwatch:
@ -17,7 +18,7 @@ class stopwatch:
text1 = ("elapsed:\t%s" % elapsed)
sys.stdout.write('\r' + str(text0+"\t\t"+text1) + "\t" * 3)
sys.stdout.flush()
sleep(1)
time.sleep(1)
def main():
try: