Skip to content

Commit be18fa7

Browse files
committed
Fix (M, N[, ...]) ndarray docstub error
1 parent 6c9061a commit be18fa7

File tree

4 files changed

+80
-79
lines changed

4 files changed

+80
-79
lines changed

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
echo -e "## docstub output\n\`\`\`" >> $GITHUB_STEP_SUMMARY
4949
(set -o pipefail && \
50-
docstub run --verbose --group-errors --allow-errors=622 \
50+
docstub run --verbose --group-errors --allow-errors=603 \
5151
--workers -1 --out-dir ${MYPYPATH}/skimage src/skimage/ \
5252
2>&1 | tee -a $GITHUB_STEP_SUMMARY)
5353
echo -e "\`\`\`" >> $GITHUB_STEP_SUMMARY

src/skimage/filters/ridges.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def meijering(
3232
3333
Parameters
3434
----------
35-
image : (M, N[, ...]) ndarray
35+
image : ndarray of shape (M, N[, ...])
3636
Array with input image data.
3737
sigmas : iterable of floats, optional
3838
Sigmas used as scales of filter
@@ -50,7 +50,7 @@ def meijering(
5050
5151
Returns
5252
-------
53-
out : (M, N[, ...]) ndarray
53+
out : ndarray of shape (M, N[, ...])
5454
Filtered image (maximum of pixels across all scales).
5555
5656
See also

0 commit comments

Comments
 (0)