Formatting

This commit is contained in:
quadbyte 2025-08-11 22:17:27 -04:00
parent 4fc4c94a47
commit 419634ea2a

View file

@ -53,8 +53,7 @@ Singleton {
}
// --------------------------------
function init() {
// does nothing but ensure the singleton is created
function init() {// does nothing but ensure the singleton is created
// do not remove
}
@ -66,7 +65,7 @@ Singleton {
data.weather = null
// Try to fetch immediately
updateWeather();
updateWeather()
}
// --------------------------------