refactor: ruff - underscore unused vars (#1372)

This commit is contained in:
Juro Oravec 2025-09-10 22:06:47 +02:00 committed by GitHub
parent f100cc1836
commit c5354baf4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 35 additions and 35 deletions

View file

@ -32,7 +32,7 @@ class NoopNode(Node):
def noop(parser: Parser, token: Token):
tag, raw_expr = token.split_contents()
_tag, raw_expr = token.split_contents()
expr = parser.compile_filter(raw_expr)
return NoopNode(expr)