disable CustomSleep when it's not useful. help clean logs

This commit is contained in:
piair 2021-12-27 18:04:58 +01:00
parent cdcc30e033
commit 78699294b3

27
V4.py
View File

@ -89,19 +89,22 @@ g.close
def CustomSleep(temps):
c = False
points = [" . ", " . ", " . ", " .", " .", " . ", " . "," . "]
for i in range (int(temps)):
c = True
for i in range (8):
sleep(0.125)
print(points[i], end='\r')
if c:
print(' ', end="\r")
sleep(temps - int(temps))
if Log or not IsLinux :
c = False
points = [" . ", " . ", " . ", " .", " .", " . ", " . "," . "]
for i in range (int(temps)):
c = True
for i in range (8):
sleep(0.125)
print(points[i], end='\r')
if c:
print(' ', end="\r")
sleep(temps - int(temps))
print("\n")
else :
sleep(temps)
def ListTabs():
tabs = []