From 1c763937275659a1afeb973a241db392a955961f Mon Sep 17 00:00:00 2001 From: Jonathan Schoreels Date: Thu, 24 Apr 2025 22:30:30 +0200 Subject: [PATCH] Allow None for SearchContext.properties --- qt/aqt/browser/table/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/browser/table/__init__.py b/qt/aqt/browser/table/__init__.py index 0ddd5770d..db21f6f9d 100644 --- a/qt/aqt/browser/table/__init__.py +++ b/qt/aqt/browser/table/__init__.py @@ -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