Exclude faulty branch from coverage

This commit is contained in:
lokidev 2024-02-13 22:01:49 +01:00
parent fb15e0dbd4
commit 2fa1a2e641
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ from typing_extensions import Annotated, get_args, get_origin
try:
from typing_extensions import TypeAliasType
except ImportError:
except ImportError: # pragma: no cover
TypeAliasType = None # type: ignore[misc,assignment]