Fix docstring for HintManager.filter_hints

This commit is contained in:
user202729 2018-10-17 23:41:51 +07:00
parent 8a62269018
commit 6f505566b8

View File

@ -833,9 +833,10 @@ class HintManager(QObject):
Args:
filterstr: The string to filter with, or None to use the filter
from previous call (saved in `self._filterstr`). If
`filterstr` is an empty string or if both `filterstr`
and `self._filterstr` are None, all hints are shown.
from previous call (saved in `self._context.filterstr`).
If `filterstr` is an empty string or if both `filterstr`
and `self._context.filterstr` are None, all hints are
shown.
"""
if filterstr is None:
filterstr = self._context.filterstr