File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
supertokens_python/recipe/dashboard/api/multitenancy Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ async def get_third_party_config(
143
143
for existing_client in providers_from_core [0 ].clients :
144
144
existing_client .additional_config = {
145
145
** (existing_client .additional_config or {}),
146
- ** additional_config
146
+ ** additional_config ,
147
147
}
148
148
149
149
# filter out other providers from static
@@ -197,7 +197,10 @@ async def get_third_party_config(
197
197
198
198
for merged_provider in merged_providers_from_core_and_static :
199
199
if merged_provider .config .third_party_id == third_party_id :
200
- if merged_provider .config .clients is None or len (merged_provider .config .clients ) == 0 :
200
+ if (
201
+ merged_provider .config .clients is None
202
+ or len (merged_provider .config .clients ) == 0
203
+ ):
201
204
merged_provider .config .clients = [
202
205
ProviderClientConfig (
203
206
client_id = "nonguessable-temporary-client-id" ,
@@ -217,7 +220,7 @@ async def get_third_party_config(
217
220
if provider .config .third_party_id == third_party_id :
218
221
found_correct_config = False
219
222
220
- for client in ( provider .config .clients or []) :
223
+ for client in provider .config .clients or []:
221
224
try :
222
225
provider_instance = await find_and_create_provider_instance (
223
226
merged_providers_from_core_and_static ,
You can’t perform that action at this time.
0 commit comments