From e5633bc368b5da9f86b95fccf9558a625b63febb Mon Sep 17 00:00:00 2001 From: Geoff-Robin Date: Mon, 6 Oct 2025 03:44:24 +0530 Subject: [PATCH] corrected F402 error pointed out by ruff check --- cognee/tasks/web_scraper/bs4_crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/tasks/web_scraper/bs4_crawler.py b/cognee/tasks/web_scraper/bs4_crawler.py index f9159b35f..57cfa46f8 100644 --- a/cognee/tasks/web_scraper/bs4_crawler.py +++ b/cognee/tasks/web_scraper/bs4_crawler.py @@ -373,7 +373,7 @@ class BeautifulSoupCrawler: normalized_url_rules: Dict[str, List[ExtractionRule]] = {} for url, rules in url_rules_map.items(): normalized_rules = [] - for field, rule in rules.items(): + for _, rule in rules.items(): r = self._normalize_rule(rule) if join_all_matches: r.all = True