Skip to content
Snippets Groups Projects
Commit 5541f35d authored by Marko Mecina's avatar Marko Mecina
Browse files

fix filter_string type assertion

parent fce0df37
No related branches found
No related tags found
No related merge requests found
...@@ -594,8 +594,8 @@ class CBRSearch(Gtk.Box): ...@@ -594,8 +594,8 @@ class CBRSearch(Gtk.Box):
return self._filter_searchstring return self._filter_searchstring
@filter_searchstring.setter @filter_searchstring.setter
def filter_searchstring(self, value: bool): def filter_searchstring(self, value: str):
assert isinstance(value, bool) assert isinstance(value, str)
self._filter_searchstring = value self._filter_searchstring = value
# @property # @property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment