Remove extra spider parameter in item pipeline docs (#6009)

This commit is contained in:
Laerte Pereira 2023-08-10 08:48:43 -03:00 committed by GitHub
parent 4a090d951a
commit 9e74748fca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ item.
screenshot_url = self.SPLASH_URL.format(encoded_item_url)
request = scrapy.Request(screenshot_url, callback=NO_CALLBACK)
response = await maybe_deferred_to_future(
spider.crawler.engine.download(request, spider)
spider.crawler.engine.download(request)
)
if response.status != 200: