From 76bb4e1431a7f2cc812b14b204fbc414f7be0715 Mon Sep 17 00:00:00 2001 From: Evgeny Prilepin Date: Mon, 18 Dec 2023 00:46:42 +0000 Subject: [PATCH] Add no cover for signature stubs --- csaps/_shortcut.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/csaps/_shortcut.py b/csaps/_shortcut.py index 43cd886..56233b5 100644 --- a/csaps/_shortcut.py +++ b/csaps/_shortcut.py @@ -33,7 +33,7 @@ def csaps( smooth: Optional[float] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> ISmoothingSpline: +) -> ISmoothingSpline: # pragma: no cover ... @@ -46,7 +46,7 @@ def csaps( weights: Optional[UnivariateDataType] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> AutoSmoothingResult: +) -> AutoSmoothingResult: # pragma: no cover ... @@ -60,7 +60,7 @@ def csaps( weights: Optional[UnivariateDataType] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> MultivariateDataType: +) -> MultivariateDataType: # pragma: no cover ... @@ -73,7 +73,7 @@ def csaps( smooth: Optional[Sequence[float]] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> ISmoothingSpline: +) -> ISmoothingSpline: # pragma: no cover ... @@ -86,7 +86,7 @@ def csaps( weights: Optional[NdGridDataType] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> AutoSmoothingResult: +) -> AutoSmoothingResult: # pragma: no cover ... @@ -100,7 +100,7 @@ def csaps( weights: Optional[NdGridDataType] = None, axis: Optional[int] = None, normalizedsmooth: bool = False, -) -> MultivariateDataType: +) -> MultivariateDataType: # pragma: no cover ...