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 7c6fc74 commit c75238fCopy full SHA for c75238f
services/api-server/src/simcore_service_api_server/services_http/catalog.py
@@ -140,7 +140,7 @@ async def list_services(
140
services = [
141
service
142
for service in services
143
- if service.service_type == ServiceType(type_filter)
+ if service.service_type == ServiceType[type_filter]
144
]
145
if predicate is not None:
146
services = [service for service in services if predicate(service)]
0 commit comments