summaryrefslogtreecommitdiff
path: root/src/jinja2/runtime.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jinja2/runtime.py')
-rw-r--r--src/jinja2/runtime.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/jinja2/runtime.py b/src/jinja2/runtime.py
index 883c2f7..87bb132 100644
--- a/src/jinja2/runtime.py
+++ b/src/jinja2/runtime.py
@@ -894,7 +894,9 @@ class Undefined:
)
@internalcode
- def _fail_with_undefined_error(self, *args: t.Any, **kwargs: t.Any) -> t.NoReturn:
+ def _fail_with_undefined_error(
+ self, *args: t.Any, **kwargs: t.Any
+ ) -> "te.NoReturn":
"""Raise an :exc:`UndefinedError` when operations are performed
on the undefined value.
"""
@@ -985,7 +987,7 @@ def make_logging_undefined(
def _fail_with_undefined_error( # type: ignore
self, *args: t.Any, **kwargs: t.Any
- ) -> t.NoReturn:
+ ) -> "te.NoReturn":
try:
super()._fail_with_undefined_error(*args, **kwargs)
except self._undefined_exception as e: