Skip to content

Commit 3a87397

Browse files
committed
import
1 parent e648427 commit 3a87397

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

services/web/server/src/simcore_service_webserver/catalog/_service.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ async def _safe_replace_service_input_outputs(
6161
)
6262

6363

64-
# IMPLEMENTATION --------------------------------------------------------------------------------
65-
66-
6764
async def list_latest_services(
6865
app: web.Application,
6966
*,
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
from ._catalog_rest_client_service import ( # noqa
1+
from ._catalog_rest_client_service import (
22
get_service,
33
get_service_access_rights,
44
get_service_resources,
55
get_services_for_user_in_product,
66
is_catalog_service_responsive,
77
to_backend_service,
88
)
9-
from ._service import batch_get_my_services # noqa
9+
from ._service import batch_get_my_services
1010

1111
__all__: tuple[str, ...] = (
12-
"is_catalog_service_responsive",
13-
"to_backend_service",
14-
"get_services_for_user_in_product",
12+
"batch_get_my_services",
1513
"get_service",
16-
"get_service_resources",
1714
"get_service_access_rights",
18-
"batch_get_my_services",
15+
"get_service_resources",
16+
"get_services_for_user_in_product",
17+
"is_catalog_service_responsive",
18+
"to_backend_service",
1919
)
20+
# nopycln: file

0 commit comments

Comments
 (0)