From 09d5ff9a71a51c998b83b356047230677825a622 Mon Sep 17 00:00:00 2001 From: Ray Luo Date: Mon, 20 Feb 2023 08:14:26 -0800 Subject: [PATCH] Remove a deprecated attribute, scheduled for 1.21+ Actually, it was broken since MSAL 1.17 because we forgot to import warnings. So, that makes the removal today even easier. Nobody needs it anymore. --- msal/authority.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/msal/authority.py b/msal/authority.py index 7c82b161..13aafa7f 100644 --- a/msal/authority.py +++ b/msal/authority.py @@ -52,12 +52,6 @@ class Authority(object): """ _domains_without_user_realm_discovery = set([]) - @property - def http_client(self): # Obsolete. We will remove this eventually - warnings.warn( - "authority.http_client might be removed in MSAL Python 1.21+", DeprecationWarning) - return self._http_client - def __init__( self, authority_url, http_client, validate_authority=True,