Skip to content

Commit

Permalink
Add no cover for signature stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
espdev committed Dec 18, 2023
1 parent b23bb27 commit 76bb4e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions csaps/_shortcut.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def csaps(
smooth: Optional[float] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> ISmoothingSpline:
) -> ISmoothingSpline: # pragma: no cover
...


Expand All @@ -46,7 +46,7 @@ def csaps(
weights: Optional[UnivariateDataType] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> AutoSmoothingResult:
) -> AutoSmoothingResult: # pragma: no cover
...


Expand All @@ -60,7 +60,7 @@ def csaps(
weights: Optional[UnivariateDataType] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> MultivariateDataType:
) -> MultivariateDataType: # pragma: no cover
...


Expand All @@ -73,7 +73,7 @@ def csaps(
smooth: Optional[Sequence[float]] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> ISmoothingSpline:
) -> ISmoothingSpline: # pragma: no cover
...


Expand All @@ -86,7 +86,7 @@ def csaps(
weights: Optional[NdGridDataType] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> AutoSmoothingResult:
) -> AutoSmoothingResult: # pragma: no cover
...


Expand All @@ -100,7 +100,7 @@ def csaps(
weights: Optional[NdGridDataType] = None,
axis: Optional[int] = None,
normalizedsmooth: bool = False,
) -> MultivariateDataType:
) -> MultivariateDataType: # pragma: no cover
...


Expand Down

0 comments on commit 76bb4e1

Please sign in to comment.