Skip to content

Commit 4dd25a5

Browse files
committed
mypy
1 parent 1adc210 commit 4dd25a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/db_listener/_db_comp_tasks_listening_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async def _get_changed_comp_task_row(
6767
result = await conn.execute(
6868
select(comp_tasks).where(comp_tasks.c.task_id == task_id)
6969
)
70-
return await result.fetchone()
70+
return cast(RowProxy | None, await result.fetchone())
7171

7272

7373
async def _handle_db_notification(

0 commit comments

Comments
 (0)