Silence a typing error.

This commit is contained in:
Andrey Rakhmatullin 2025-06-06 13:16:48 +05:00
parent 54474ceb0d
commit b20995c9d8
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ class Scraper:
try:
# call the spider middlewares and the request callback with the response
output = await maybe_deferred_to_future(
self.spidermw.scrape_response(
self.spidermw.scrape_response( # type: ignore[arg-type]
self.call_spider, result, request, self.crawler.spider
)
)