Allow None for SearchContext.properties

This commit is contained in:
Jonathan Schoreels 2025-04-24 22:30:30 +02:00
parent ea0f299a4e
commit 1c76393727

View file

@ -29,7 +29,7 @@ class SearchContext:
browser: aqt.browser.Browser
order: bool | str | Column = True
reverse: bool = False
properties: dict = None
properties: dict | None = None
# if set, provided ids will be used instead of the regular search
ids: Sequence[ItemId] | None = None