Merge branch 'main' into alert-sender

This commit is contained in:
Alex 2024-06-16 15:02:20 +03:00
commit 84ab61eb00

6
prettyprint.py Normal file → Executable file
View file

@ -1,5 +1,8 @@
#!/usr/bin/env python3
from colorama import Back, Fore, Style
from sensors import Sensors
from colorama import Fore, Style, Back
def pretty_print():
@ -11,5 +14,6 @@ def pretty_print():
for sensors in v:
print(f"{sensors.sensor_label}: {sensors.current_temp}°C")
if __name__ == "__main__":
pretty_print()