fix typo in oapen.py

pull/17/head
Celina Peralta 2022-10-23 19:53:48 -04:00
parent d2668491ab
commit 162eb86497
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def get_collection_items_by_id(id, limit=None) -> List[OapenItem]:
def get_collection_items_by_label(label, limit=None) -> List[OapenItem]:
label = label = "+".join(label.split(" "))
label = "+".join(label.split(" "))
res = get(
endpoint=GET_COLLECTION_BY_LABEL.format(label=label), params={"limit": limit}
)