diff --git a/main.py b/main.py index 958d85c..fcb0b12 100755 --- a/main.py +++ b/main.py @@ -115,7 +115,7 @@ def coloring_temperature(temperature: float) -> str: return str(temperature) if temperature >= 0.0: - return fg.cyan + str(cur_temp) + fg.rs + return fg.cyan + str(temperature) + fg.rs return fg.blue + str(cur_temp) + fg.rs