Skip to content

Commit 97345ab

Browse files
committed
@giancarloromeo absolute import -> relative import
1 parent 56f01ff commit 97345ab

File tree

1 file changed

+3
-3
lines changed
  • services/api-server/src/simcore_service_api_server/services_rpc

1 file changed

+3
-3
lines changed

services/api-server/src/simcore_service_api_server/services_rpc/async_jobs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
from models_library.api_schemas_storage import STORAGE_RPC_NAMESPACE
1818
from servicelib.rabbitmq._client_rpc import RabbitMQRPCClient
1919
from servicelib.rabbitmq.rpc_interfaces.async_jobs import async_jobs
20-
from simcore_service_api_server.exceptions.task_errors import (
20+
21+
from ..exceptions.service_errors_utils import service_exception_mapper
22+
from ..exceptions.task_errors import (
2123
TaskCancelledError,
2224
TaskError,
2325
TaskResultMissingError,
2426
TaskSchedulerError,
2527
)
2628

27-
from ..exceptions.service_errors_utils import service_exception_mapper
28-
2929
_exception_mapper = functools.partial(
3030
service_exception_mapper, service_name="Async jobs"
3131
)

0 commit comments

Comments
 (0)