Remove unnecessary typing comment

This commit is contained in:
Adrian Chaves 2026-06-26 05:24:33 +02:00
parent 4752f1b13f
commit 3817cd4175
1 changed files with 1 additions and 1 deletions

View File

@ -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("&")