sane-weather: format the temperature better

This commit is contained in:
2023-08-24 11:06:05 +00:00
parent 6eb3626203
commit 6862d084ac

View File

@@ -95,7 +95,7 @@ class TopLevel:
temp = self.source.try_get_celcius()
if temp is not None:
del self.work_queue[0]
print(f"{int(temp)} C")
print(f"{int(temp)}°C")
elif isinstance(work, DiagnosticsOp):
del self.work_queue[0]
# GWeather does transparent caching so that we don't usually hit the web