From 124ed868a5c5230893c851346da99174f68507cd Mon Sep 17 00:00:00 2001 From: Florestan Bredow Date: Mon, 25 Aug 2025 11:03:33 +0200 Subject: [PATCH] Corrige erreur nom variable --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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