Skip to content

Commit d1724f8

Browse files
committed
fix(typing): Ignore the type hints-related code from coverage
1 parent 03dfc2a commit d1724f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cachier/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class _CachierWrappedFunc(Protocol[_P, _R_co]):
4848
4949
"""
5050

51-
def __call__(self, *args: _P.args, **kwargs: _P.kwargs) -> _R_co: ...
51+
def __call__(self, *args: _P.args, **kwargs: _P.kwargs) -> _R_co: ... # pragma: no cover
5252

5353
clear_cache: Callable[[], Any]
5454
clear_being_calculated: Callable[[], Any]

0 commit comments

Comments
 (0)