chore: added type hints to all whitelisted functions

This commit is contained in:
Jannat Patel
2026-02-06 16:01:49 +05:30
parent 1bbdff9aaf
commit cd0d4c413d
19 changed files with 266 additions and 273 deletions

View File

@@ -16,7 +16,7 @@ def search_sqlite(query: str):
return prepare_search_results(result)
def prepare_search_results(result):
def prepare_search_results(result: dict):
groups = get_grouped_results(result)
out = []