mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 14:27:07 +00:00
Use url builder helper
This commit is contained in:
parent
d2ba8ee0a7
commit
87f81bf3b4
@ -152,11 +152,7 @@ class WUndergroundData(object):
|
||||
def update(self):
|
||||
"""Get the latest data from wunderground."""
|
||||
try:
|
||||
result = requests.get(self._resource + self._api_key +
|
||||
'/conditions/q/pws:' + self._pws_id +
|
||||
'.json', timeout=10)
|
||||
if "error" in result.json():
|
||||
raise ValueError(result.json()["response"]["error"]
|
||||
result = requests.get(self._build_url(), timeout=10).json()
|
||||
["description"])
|
||||
else:
|
||||
self.data = result.json()["current_observation"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user