From 8b27a5173bbbe1a348afbe901dd09b2ef6f8a349 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 12 May 2026 14:05:30 +0000 Subject: [PATCH] fix typo for rate limit error --- backend/epc_client/epc_client_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/epc_client/epc_client_service.py b/backend/epc_client/epc_client_service.py index 777e8d14..abb5b826 100644 --- a/backend/epc_client/epc_client_service.py +++ b/backend/epc_client/epc_client_service.py @@ -52,7 +52,7 @@ class EpcClientService: if resp.status_code == 404: raise EpcNotFoundError(cert_num) if resp.status_code == 429: - raise EpcRateLimpolars vs pandas code examplepolars vs pandas code exampleitError("Rate limited by EPC API") + raise EpcRateLimitError("Rate limited by EPC API") if not resp.is_success: raise EpcApiError(f"EPC API error {resp.status_code}: {resp.text}") return resp.json()["data"]