🐛 fix(store.py): change method name from get to download in store_service to improve clarity and consistency

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-23 21:29:53 -03:00
commit 88203b9178

View file

@ -78,7 +78,7 @@ def read_component(
try:
decrypted = auth_utils.decrypt_api_key(store_api_Key, settings_service)
component = store_service.get(decrypted, component_id)
component = store_service.download(decrypted, component_id)
except Exception as exc:
raise HTTPException(status_code=400, detail=str(exc)) from exc