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

@ -14,7 +14,7 @@ from .globals import _request_ctx_stack
from .json import dumps as json_dumps
from .sessions import SessionMixin
if t.TYPE_CHECKING:
if t.TYPE_CHECKING: # pragma: no cover
from werkzeug.test import TestResponse
from .app import Flask