Skip to content

Commit 5a2b652

Browse files
committed
pylint fix
1 parent b1d306e commit 5a2b652

File tree

1 file changed

+2
-2
lines changed
  • services/api-server/src/simcore_service_api_server/api/routes

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import logging
22
from typing import Annotated, Any
33

4-
from celery.exceptions import (
5-
CeleryError, # type: ignore[import-untyped] # pylint: disable=no-name-in-module
4+
from celery.exceptions import ( # type: ignore[import-untyped] # pylint: disable=no-name-in-module
5+
CeleryError,
66
)
77
from common_library.error_codes import create_error_code
88
from fastapi import APIRouter, Depends, FastAPI, HTTPException, status

0 commit comments

Comments
 (0)