From dcf8b99dca31be1f6205d5f7cc1286d8228d2c77 Mon Sep 17 00:00:00 2001 From: cabana8471 Date: Tue, 27 Jan 2026 07:26:29 +0100 Subject: [PATCH] fix: remove unused RATE_LIMIT_PATTERNS import Fixes ruff F401 lint error - the constant was imported but not used in test_agent.py. Co-Authored-By: Claude Opus 4.5 --- test_agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test_agent.py b/test_agent.py index 2af56d5..f672ecb 100644 --- a/test_agent.py +++ b/test_agent.py @@ -8,7 +8,6 @@ from rate_limit_utils.py (shared module). import unittest from rate_limit_utils import ( - RATE_LIMIT_PATTERNS, is_rate_limit_error, parse_retry_after, )