Skip to content

Commit d628268

Browse files
author
ExpDev07
committed
removed **kwargs from JhuLocationService#get_all()
1 parent bcf32c2 commit d628268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/services/location/jhu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class JhuLocationService(LocationService):
88
Service for retrieving locations from Johns Hopkins CSSE (https://github.com/CSSEGISandData/COVID-19).
99
"""
1010

11-
def get_all(self, **kwargs):
11+
def get_all(self):
1212
# Get all of the data categories locations.
1313
confirmed = get_category('confirmed')['locations']
1414
deaths = get_category('deaths')['locations']

0 commit comments

Comments
 (0)