Skip to content

Commit

Permalink
removed extraneous character
Browse files Browse the repository at this point in the history
Removed extraneous character in api query
  • Loading branch information
DerekCaelin authored Jun 4, 2021
1 parent 2f1547c commit 60719e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ZIPCODE = #insert Zip Code

#get current conditions from weather underground
query = "https://api.weather.com/v2/pws/observations/current?stationId="+STATION+"6&format=json&units=e&apiKey="+APIKEY
query = "https://api.weather.com/v2/pws/observations/current?stationId="+STATION+"&format=json&units=e&apiKey="+APIKEY
url = requests.get(query)
text = url.text
x = json.loads(text)
Expand Down

0 comments on commit 60719e2

Please sign in to comment.