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 94a7bad commit ef6493dCopy full SHA for ef6493d
services/director-v2/src/simcore_service_director_v2/modules/osparc_variables/_api_auth.py
@@ -69,6 +69,7 @@ async def create_user_api_key(
69
node_id=node_id,
70
)
71
assert data.api_key # nosec
72
+ assert isinstance(data.api_key, str) # nosec
73
return data.api_key
74
75
@@ -87,6 +88,7 @@ async def create_user_api_secret(
87
88
89
90
assert data.api_secret # nosec
91
+ assert isinstance(data.api_secret, str) # nosec
92
return data.api_secret
93
94
0 commit comments