Skip to content

Commit c75238f

Browse files
committed
bugfix
1 parent 7c6fc74 commit c75238f

File tree

1 file changed

+1
-1
lines changed
  • services/api-server/src/simcore_service_api_server/services_http

1 file changed

+1
-1
lines changed

services/api-server/src/simcore_service_api_server/services_http/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async def list_services(
140140
services = [
141141
service
142142
for service in services
143-
if service.service_type == ServiceType(type_filter)
143+
if service.service_type == ServiceType[type_filter]
144144
]
145145
if predicate is not None:
146146
services = [service for service in services if predicate(service)]

0 commit comments

Comments
 (0)