Skip to content

Commit 9cc387f

Browse files
committed
fix pylint tests
1 parent 4545efe commit 9cc387f

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

services/api-server/src/simcore_service_api_server/_service_function_jobs_task_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=too-many-instance-attributes
12
import contextlib
23
from dataclasses import dataclass
34
from typing import Final

services/api-server/src/simcore_service_api_server/api/routes/function_jobs_routes.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@
115115
),
116116
)
117117
async def list_function_jobs(
118-
app: Annotated[FastAPI, Depends(get_app)],
119118
page_params: Annotated[PaginationParams, Depends()],
120119
function_job_task_client_service: Annotated[
121120
FunctionJobTaskClientService, Depends(get_function_job_task_client_service)
@@ -228,9 +227,6 @@ async def delete_function_job(
228227
),
229228
)
230229
async def function_job_status(
231-
app: Annotated[FastAPI, Depends(get_app)],
232-
user_id: Annotated[UserID, Depends(get_current_user_id)],
233-
product_name: Annotated[ProductName, Depends(get_product_name)],
234230
function_job: Annotated[
235231
RegisteredFunctionJob, Depends(get_function_job_dependency)
236232
],

services/api-server/src/simcore_service_api_server/api/routes/functions_routes.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,6 @@ async def run_function(
325325
url_for: Annotated[Callable, Depends(get_reverse_url_mapper)],
326326
function_inputs: FunctionInputs,
327327
function_service: Annotated[FunctionService, Depends(get_function_service)],
328-
function_job_service: Annotated[
329-
FunctionJobService, Depends(get_function_job_service)
330-
],
331328
function_job_task_client_service: Annotated[
332329
FunctionJobTaskClientService, Depends(get_function_job_task_client_service)
333330
],

0 commit comments

Comments
 (0)