summaryrefslogtreecommitdiff
path: root/src/jinja2/lexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jinja2/lexer.py')
-rw-r--r--src/jinja2/lexer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jinja2/lexer.py b/src/jinja2/lexer.py
index aff7e9f..16ca73e 100644
--- a/src/jinja2/lexer.py
+++ b/src/jinja2/lexer.py
@@ -447,7 +447,7 @@ def get_lexer(environment: "Environment") -> "Lexer":
return lexer
-class OptionalLStrip(tuple):
+class OptionalLStrip(tuple): # type: ignore[type-arg]
"""A special tuple for marking a point in the state that can have
lstrip applied.
"""