mirror of
https://github.com/ankitects/anki.git
synced 2025-11-12 23:57:13 -05:00
Allow None for SearchContext.properties
This commit is contained in:
parent
ea0f299a4e
commit
1c76393727
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ class SearchContext:
|
||||||
browser: aqt.browser.Browser
|
browser: aqt.browser.Browser
|
||||||
order: bool | str | Column = True
|
order: bool | str | Column = True
|
||||||
reverse: bool = False
|
reverse: bool = False
|
||||||
properties: dict = None
|
properties: dict | None = None
|
||||||
# if set, provided ids will be used instead of the regular search
|
# if set, provided ids will be used instead of the regular search
|
||||||
ids: Sequence[ItemId] | None = None
|
ids: Sequence[ItemId] | None = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue