File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
supertokens_python/recipe/thirdparty Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ def __init__(
226
226
force_pkce : bool = False ,
227
227
additional_config : Optional [Dict [str , Any ]] = None ,
228
228
# CommonProviderConfig:
229
- third_party_id : Optional [ str ] = None ,
229
+ third_party_id : str = "temp" ,
230
230
name : Optional [str ] = None ,
231
231
authorization_endpoint : Optional [str ] = None ,
232
232
authorization_endpoint_query_params : Optional [
@@ -262,7 +262,7 @@ def __init__(
262
262
)
263
263
CommonProviderConfig .__init__ (
264
264
self ,
265
- third_party_id or "" , # FIXME?
265
+ third_party_id ,
266
266
name ,
267
267
authorization_endpoint ,
268
268
authorization_endpoint_query_params ,
Original file line number Diff line number Diff line change @@ -180,7 +180,8 @@ def __init__(self, provider_config: ProviderConfig):
180
180
self .input_config = input_config = self ._normalize_input (provider_config )
181
181
182
182
provider_config_for_client = ProviderConfigForClient (
183
- # Will automatically get replaced by correct value
183
+ # Will automatically get replaced with correct value
184
+ # in get_provider_config_for_client
184
185
# when fetch_and_set_config function runs
185
186
client_id = "temp" ,
186
187
client_secret = None ,
You can’t perform that action at this time.
0 commit comments