Merge pull request #35 from aaron-lebo/master

Update weather.py
This commit is contained in:
enkore 2014-03-19 16:15:46 +01:00
commit 9356b5476a

View File

@ -20,12 +20,12 @@ class Weather(IntervalModule):
settings = (
"location_code",
("units", "Celsius (C) or Fahrenheit (F)"),
("units", "Celsius (metric) or Fahrenheit (imperial)"),
"format",
)
required = ("location_code",)
units = "C"
units = "metric"
format = "{current_temp}"
@require(internet)