We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7530faa commit f44fd8dCopy full SHA for f44fd8d
packages/pytest-simcore/src/pytest_simcore/helpers/catalog_rpc_server.py
@@ -20,6 +20,7 @@
20
21
22
class CatalogRpcSideEffects:
23
+ # pylint: disable=no-self-use
24
async def list_services_paginated(
25
self,
26
rpc_client: RabbitMQRPCClient,
@@ -104,9 +105,7 @@ async def list_my_service_history_paginated(
104
105
assert service_key
106
107
items = TypeAdapter(list[ServiceRelease]).validate_python(
- [
108
- ServiceRelease.model_json_schema()["example"],
109
- ]
+ ServiceRelease.model_json_schema()["examples"],
110
)
111
total_count = len(items)
112
0 commit comments