Skip to content

Commit ed09b5e

Browse files
committed
unused
1 parent 4b7faac commit ed09b5e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

packages/models-library/src/models_library/service_settings_labels.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
from .services_resources import DEFAULT_SINGLE_SERVICE_NAME
2828

2929
_BaseConfig = ConfigDict(
30-
extra="forbid", arbitrary_types_allowed=True, ignored_types=(cached_property,)
30+
extra="forbid",
31+
arbitrary_types_allowed=True,
32+
ignored_types=(cached_property,),
3133
)
3234

3335

services/api-server/src/simcore_service_api_server/models/_utils_pydantic.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
from copy import deepcopy
22

3-
from common_library.json_serialization import json_dumps, json_loads
43
from pydantic import GetJsonSchemaHandler
54
from pydantic.json_schema import JsonSchemaValue
65
from pydantic_core.core_schema import CoreSchema
76

87

9-
class BaseConfig:
10-
json_loads = json_loads
11-
json_dumps = json_dumps
12-
13-
148
class UriSchema:
159
"""Metadata class to modify openapi schemas of Url fields
1610

0 commit comments

Comments
 (0)