Skip to content

Commit 69f2675

Browse files
committed
fixes mypy
1 parent a7be599 commit 69f2675

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

services/web/server/src/simcore_service_webserver/projects/_jobs_repository.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import logging
2-
from typing import cast
32

43
import sqlalchemy as sa
54
from models_library.products import ProductName
@@ -140,4 +139,4 @@ async def list_projects_marked_as_jobs(
140139
result.fetchall()
141140
)
142141

143-
return cast(int, total_count), projects_list
142+
return total_count, projects_list

0 commit comments

Comments
 (0)