@@ -119,7 +119,7 @@ def __init__(
119
119
verify = True , proxies = None , timeout = None ,
120
120
client_claims = None , app_name = None , app_version = None ,
121
121
client_capabilities = None ,
122
- region = None , # Note: We choose to add this param in this base class,
122
+ azure_region = None , # Note: We choose to add this param in this base class,
123
123
# despite it is currently only needed by ConfidentialClientApplication.
124
124
# This way, it holds the same positional param place for PCA,
125
125
# when we would eventually want to add this feature to PCA in future.
@@ -229,7 +229,7 @@ def __init__(
229
229
`claims parameter <https://openid.net/specs/openid-connect-core-1_0-final.html#ClaimsParameter`_
230
230
which you will later provide via one of the acquire-token request.
231
231
232
- :param str region :
232
+ :param str azure_region :
233
233
Added since MSAL Python 1.12.0.
234
234
235
235
As of 2021 May, regional service is only available for
@@ -301,7 +301,7 @@ def __init__(
301
301
raise
302
302
303
303
self .token_cache = token_cache or TokenCache ()
304
- self ._region_configured = region
304
+ self ._region_configured = azure_region
305
305
self ._region_detected = None
306
306
self .client , self ._regional_client = self ._build_client (
307
307
client_credential , self .authority )
0 commit comments