Skip to content

Commit 0179353

Browse files
committed
make pylint happy
1 parent 3e97807 commit 0179353

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

services/storage/src/simcore_service_storage/api/rabbitmq_rpc/_zipping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,5 @@ async def get_zipping_status(app: FastAPI, task_id: TaskId) -> TaskStatus:
5151
@router.expose()
5252
async def get_zipping_result(app: FastAPI, task_id: TaskId) -> TaskResult:
5353
assert app # nosec
54+
assert task_id # nosec
5455
return TaskResult(result="Here's your result.", error=None)

services/storage/tests/unit/test_zipping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable=W0621
2+
# pylint: disable=W0613
23
from pathlib import Path
34
from typing import Awaitable, Callable
45

0 commit comments

Comments
 (0)