We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 573d45e commit ac998a2Copy full SHA for ac998a2
app/services/location/jhu.py
@@ -52,11 +52,6 @@ def get_category(category):
52
# URL to request data from.
53
url = base_url + "time_series_covid19_%s_global.csv" % category
54
55
- # Different URL is needed for recoveries.
56
- # Read about deprecation here: https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data/csse_covid_19_time_series.
57
- if category == "recovered":
58
- url = base_url + "time_series_19-covid-Recovered.csv"
59
-
60
# Request the data
61
request = requests.get(url)
62
text = request.text
0 commit comments