no expectation to cover the TYPE_CHECKING-only code
This commit is contained in:
parent
27d87052de
commit
77beefcf9e
2 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ from typing import TYPE_CHECKING, Any, NamedTuple, TextIO, TypeVar
|
|||
from . import iersdata
|
||||
from .tz import Mountain
|
||||
|
||||
if TYPE_CHECKING:
|
||||
if TYPE_CHECKING: # pragma: no cover
|
||||
from collections.abc import Generator
|
||||
|
||||
HOUR = datetime.timedelta(seconds=3600)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ from typing import TYPE_CHECKING
|
|||
|
||||
import wwvb
|
||||
|
||||
if TYPE_CHECKING:
|
||||
if TYPE_CHECKING: # pragma: no cover
|
||||
from collections.abc import Generator
|
||||
|
||||
# State 1: Unsync'd
|
||||
|
|
|
|||
Loading…
Reference in a new issue