🐛 fix(store.py): change method name from get to download in store_service to improve clarity and consistency
This commit is contained in:
parent
464ba02de8
commit
88203b9178
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue