From 21d826c2a425ff7fbbf4271f9d061a9ea9dd3d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 22 Aug 2023 18:43:27 +0200 Subject: [PATCH] [BUG] typo in views_api (#16) --- views_api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/views_api.py b/views_api.py index 9861931..b710518 100644 --- a/views_api.py +++ b/views_api.py @@ -66,7 +66,8 @@ def validate_card(data: CreateCardData): status_code=HTTPStatus.OK, dependencies=[Depends(validate_card)] ) -async def api_card_create_or_update( + +async def api_card_update( data: CreateCardData, card_id: str, wallet: WalletTypeInfo = Depends(require_admin_key),