We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e6d6c commit 75e6980Copy full SHA for 75e6980
albert.pyi
@@ -268,6 +268,16 @@ class GlobalQuery(ABC):
268
class GlobalQueryHandler(TriggerQueryHandler):
269
"""https://albertlauncher.github.io/reference/classalbert_1_1_global_query_handler.html"""
270
271
+ def __init__(self,
272
+ id: str,
273
+ name: str,
274
+ description: str,
275
+ synopsis: str = '',
276
+ defaultTrigger: str = f'{id} ',
277
+ allowTriggerRemap: str = true,
278
+ supportsFuzzyMatching: bool = False):
279
+ ...
280
+
281
@abstractmethod
282
def handleGlobalQuery(self, query: GlobalQuery) -> List[RankItem]:
283
...
0 commit comments