Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuarte47 committed Jan 24, 2023
1 parent 2782184 commit 868dd64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def search_gee_datasets() -> List[Dict]:
Discover list of available GEE Datasets.
"""
try:
respose = requests.get(GEE_CATALOG_URL)
catalog_list = respose.json()
response = requests.get(GEE_CATALOG_URL)
catalog_list = response.json()
datasets = [dataset for dataset in catalog_list if dataset['type'] == 'image_collection']
datasets = sorted(datasets, key=lambda obj: obj['title'], reverse=False)
return datasets
Expand Down

0 comments on commit 868dd64

Please sign in to comment.