bump version.

This commit is contained in:
piair 2024-02-27 15:17:11 +01:00
parent af938eb50a
commit a601c64feb
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ class ColoredFormatter(logging.Formatter):
# Set up the root logger
root_logger = logging.getLogger()
root_logger.setLevel(logging.DEBUG)
root_logger.setLevel(logging.INFO)
# Create a console handler and set the formatter
ch = logging.StreamHandler()

View File

@ -11,8 +11,8 @@ def custom_sleep(temps):
if True: # todo: change this awful condition
points = ["", "", "", "", "", "", "", ""]
passe = 0
for i in range(int(temps)):
for _ in range(8):
for _ in range(int(temps)):
for i in range(8):
sleep(0.125)
passe += 0.125
print(f"{points[i]} - {round(float(temps) - passe, 3)}", end="\r")

View File

@ -1 +1 @@
v6.8.4
v6.8.5