diff --git a/src/wheezy/template/typing.py b/src/wheezy/template/typing.py index c04c639..afd95a3 100644 --- a/src/wheezy/template/typing.py +++ b/src/wheezy/template/typing.py @@ -2,9 +2,9 @@ import typing from abc import abstractmethod -if sys.version_info <= (3, 9, 0): +if sys.version_info <= (3, 9, 0): # pragma: nocover Token = typing.Tuple[int, str, str] -else: +else: # pragma: nocover Token = tuple[int, str, str] # type: ignore[misc]