Skip to content

Commit 16b56ee

Browse files
committed
make pylint happy
1 parent 5cace5b commit 16b56ee

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
from ._service_catalog_rest_client import * # noqa
1+
from ._service import batch_get_my_services # noqa
2+
from ._service_catalog_rest_client import ( # noqa
3+
get_service,
4+
get_service_access_rights,
5+
get_service_resources,
6+
get_services_for_user_in_product,
7+
is_catalog_service_responsive,
8+
to_backend_service,
9+
)
210

311
__all__: tuple[str, ...] = (
412
"is_catalog_service_responsive",

services/web/server/tests/unit/with_dbs/01/test_catalog_rest_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint:disable=unused-argument
12
import re
23

34
import pytest

0 commit comments

Comments
 (0)