skip coverage for TYPE_CHECKING

This commit is contained in:
Stanislav Bushuev 2022-05-02 14:42:23 +02:00 committed by David Lord
parent 127df57a06
commit a74e266474
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
13 changed files with 13 additions and 13 deletions

View file

@ -67,7 +67,7 @@ from .typing import TemplateTestCallable
from .wrappers import Request
from .wrappers import Response
if t.TYPE_CHECKING:
if t.TYPE_CHECKING: # pragma: no cover
import typing_extensions as te
from .blueprints import Blueprint
from .testing import FlaskClient