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 9d3dbd0 commit efdc600Copy full SHA for efdc600
services/web/server/src/simcore_service_webserver/products/_repository.py
@@ -227,6 +227,7 @@ async def get_product_base_url(
227
if row.base_url == products.c.base_url.server_default.arg: # type: ignore[union-attr]
228
raise ProductBaseUrlNotSetError(product_name=product_name)
229
230
+ assert isinstance(row.base_url, str) # nosec
231
return row.base_url
232
233
async def auto_create_products_groups(
0 commit comments