fix: missing self argument in ScreenshotPipeline constructor (#7248)

added missing self argument in __init__ method constructor
This commit is contained in:
Anant Murmu 2026-02-13 14:12:26 +05:30 committed by GitHub
parent fc30c47f38
commit 2c3ecbff71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ item.
SPLASH_URL = "http://localhost:8050/render.png?url={}"
def __init__(crawler):
def __init__(self, crawler):
self.crawler = crawler
@classmethod