Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
replace match to item
  • Loading branch information
Mantisus committed Dec 23, 2025
commit 24ca257e4c90a9d24beb07e362bcb63426a7d8fd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def select(
self, parsed_content: LexborHTMLParser, selector: str
) -> Sequence[LexborNode]:
"""Select elements matching a CSS selector."""
return tuple(match for match in parsed_content.css(selector))
return tuple(item for item in parsed_content.css(selector))

@override
def is_matching_selector(
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.