Skip to content

Commit ed095ce

Browse files
committed
add pragma: no cover comments to TYPE_CHECKING imports
1 parent d188892 commit ed095ce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

githubkit/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from .typing import RetryDecisionFunc
1414

1515
if TYPE_CHECKING:
16-
import ssl
16+
import ssl # pragma: no cover
1717

1818

1919
@dataclass(frozen=True)

githubkit/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from .utils import UNSET
4040

4141
if TYPE_CHECKING:
42-
import ssl
42+
import ssl # pragma: no cover
4343

4444
T = TypeVar("T")
4545
A = TypeVar("A", bound="BaseAuthStrategy")

0 commit comments

Comments
 (0)