From 3817cd41759a4647b161d5bfb5e15eb021d95b3c Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Fri, 26 Jun 2026 05:24:33 +0200 Subject: [PATCH] Remove unnecessary typing comment --- tests/test_http_request_form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_http_request_form.py b/tests/test_http_request_form.py index ede8ce1bb..9d53a5b77 100644 --- a/tests/test_http_request_form.py +++ b/tests/test_http_request_form.py @@ -32,7 +32,7 @@ def _qs(req, encoding="utf-8", to_unicode=False): # many tests below that exercise it ignore the resulting deprecation warning. @pytest.mark.filterwarnings("ignore::scrapy.exceptions.ScrapyDeprecationWarning") class TestFormRequest(TestRequest): - request_class = FormRequest # type: ignore[assignment] + request_class = FormRequest def assertQueryEqual(self, first, second, msg=None): first = to_unicode(first).split("&")