refactor: add type hints to function signatures across multiple files

This commit is contained in:
grillazz
2026-07-13 14:25:49 +02:00
parent 51f0cebabe
commit eb8acd7b7c
10 changed files with 27 additions and 15 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ def compile_sql_or_scalar(func):
"""
@wraps(func)
async def wrapper(cls, db_session, name, compile_sql=False, *args, **kwargs):
async def wrapper(cls, db_session, name, compile_sql: bool=False, *args, **kwargs):
"""
Wrapper function that either compiles the SQL statement or executes it.