Skip to content

Commit 24ca257

Browse files
committed
replace match to item
1 parent 09c6624 commit 24ca257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/code_examples/http_crawlers/selectolax_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def select(
3434
self, parsed_content: LexborHTMLParser, selector: str
3535
) -> Sequence[LexborNode]:
3636
"""Select elements matching a CSS selector."""
37-
return tuple(match for match in parsed_content.css(selector))
37+
return tuple(item for item in parsed_content.css(selector))
3838

3939
@override
4040
def is_matching_selector(

0 commit comments

Comments
 (0)