File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
web/server/src/simcore_service_webserver/db_listener Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -414,7 +414,7 @@ def _creator(command: list[str] | None = None) -> ServiceExampleParam:
414414
415415@pytest .fixture ()
416416def failing_ubuntu_task (
417- sidecar_task : Callable [..., ServiceExampleParam ]
417+ sidecar_task : Callable [..., ServiceExampleParam ],
418418) -> ServiceExampleParam :
419419 return sidecar_task (command = ["/bin/bash" , "-c" , "some stupid failing command" ])
420420
@@ -444,7 +444,7 @@ def mocked_get_image_labels(
444444) -> mock .Mock :
445445 assert "json_schema_extra" in ServiceMetaDataPublished .model_config
446446 labels : ImageLabels = TypeAdapter (ImageLabels ).validate_python (
447- ServiceMetaDataPublished .model_config [ "json_schema_extra" ] ["examples" ][0 ],
447+ ServiceMetaDataPublished .model_json_schema () ["examples" ][0 ],
448448 )
449449 labels .integration_version = f"{ integration_version } "
450450 return mocker .patch (
Original file line number Diff line number Diff line change 1313from aiohttp import web
1414from aiopg .sa import Engine
1515from aiopg .sa .connection import SAConnection
16- from commontypes .json_serialization import json_loads
16+ from common_types .json_serialization import json_loads
1717from models_library .errors import ErrorDict
1818from models_library .projects import ProjectID
1919from models_library .projects_nodes_io import NodeID
You can’t perform that action at this time.
0 commit comments