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 ecfb0a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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
Do a keyword search on scikit-image docstrings.
skimage.util.lookfor
Do a keyword search on scikit-image docstrings and print results.
"""
return _lookfor(what, sys.modules[__name__.split('.')[0]])

0 comments on commit ecfb0a0

Please sign in to comment.