diff --git a/crawl4ai/scraper/scraper_strategy.py b/crawl4ai/scraper/scraper_strategy.py index f1588f0c..396ea7c4 100644 --- a/crawl4ai/scraper/scraper_strategy.py +++ b/crawl4ai/scraper/scraper_strategy.py @@ -32,7 +32,7 @@ class ScraperStrategy(ABC): pass @abstractmethod - async def can_process_url(self, url: str) -> bool: + async def can_process_url(self, url: str, depth: int) -> bool: """Check if URL can be processed based on strategy rules""" pass