Skip to content

Commit

Permalink
Fix missed import paths in lookfor
Browse files Browse the repository at this point in the history
  • Loading branch information
lagru committed Feb 25, 2024
1 parent 4d338f5 commit 31bdad2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skimage/util/lookfor.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def lookfor(what):
Examples
--------
>>> import skimage
>>> skimage.lookfor('regular_grid')
>>> import skimage as ski
>>> ski.util.lookfor('regular_grid')
Search results for 'regular_grid'
---------------------------------
skimage.util.regular_grid
Find `n_points` regularly spaced along `ar_shape`.
skimage.util.lookfor.lookfor
skimage.util.lookfor
Do a keyword search on scikit-image docstrings.
"""
return _lookfor(what, sys.modules[__name__.split('.')[0]])

0 comments on commit 31bdad2

Please sign in to comment.