bump version.
This commit is contained in:
parent
af938eb50a
commit
a601c64feb
@ -30,7 +30,7 @@ class ColoredFormatter(logging.Formatter):
|
|||||||
|
|
||||||
# Set up the root logger
|
# Set up the root logger
|
||||||
root_logger = logging.getLogger()
|
root_logger = logging.getLogger()
|
||||||
root_logger.setLevel(logging.DEBUG)
|
root_logger.setLevel(logging.INFO)
|
||||||
|
|
||||||
# Create a console handler and set the formatter
|
# Create a console handler and set the formatter
|
||||||
ch = logging.StreamHandler()
|
ch = logging.StreamHandler()
|
||||||
|
@ -11,8 +11,8 @@ def custom_sleep(temps):
|
|||||||
if True: # todo: change this awful condition
|
if True: # todo: change this awful condition
|
||||||
points = ["⢿", "⣻", "⣽", "⣾", "⣷", "⣯", "⣟", "⡿"]
|
points = ["⢿", "⣻", "⣽", "⣾", "⣷", "⣯", "⣟", "⡿"]
|
||||||
passe = 0
|
passe = 0
|
||||||
for i in range(int(temps)):
|
for _ in range(int(temps)):
|
||||||
for _ in range(8):
|
for i in range(8):
|
||||||
sleep(0.125)
|
sleep(0.125)
|
||||||
passe += 0.125
|
passe += 0.125
|
||||||
print(f"{points[i]} - {round(float(temps) - passe, 3)}", end="\r")
|
print(f"{points[i]} - {round(float(temps) - passe, 3)}", end="\r")
|
||||||
|
Loading…
Reference in New Issue
Block a user