File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
supertokens_python/recipe/thirdparty Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -143,15 +143,13 @@ def merge_config(
143143
144144
145145def merge_providers_from_core_and_static (
146- tenant_id : Optional [str ],
147146 provider_configs_from_core : List [ProviderConfig ],
148147 provider_inputs_from_static : List [ProviderInput ],
149148) -> List [ProviderInput ]:
150149 merged_providers : List [ProviderInput ] = []
151150
152151 if len (provider_configs_from_core ) == 0 :
153152 for config in provider_inputs_from_static :
154- config .config .tenant_id = tenant_id
155153 merged_providers .append (config )
156154 else :
157155 for provider_config_from_core in provider_configs_from_core :
Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ async def get_provider(
187187 )
188188
189189 merged_providers = merge_providers_from_core_and_static (
190- tenant_id = tenant_id ,
191190 provider_configs_from_core = tenant_config .third_party .providers ,
192191 provider_inputs_from_static = self .providers ,
193192 )
You can’t perform that action at this time.
0 commit comments