Skip to content

Commit f49436f

Browse files
authored
Shorten a line to within 80 chars
Although not strictly enforced (by pylint) in this repo, we don't want to noticeably exceed that limit. https://www.python.org/dev/peps/pep-0008/#maximum-line-length
1 parent 2791b62 commit f49436f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

msal/application.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ def _get_authority_aliases(self, instance):
271271
if not self.authority_groups:
272272
resp = requests.get(
273273
"https://login.microsoftonline.com/common/discovery/instance?api-version=1.1&authorization_endpoint=https://login.microsoftonline.com/common/oauth2/authorize",
274-
headers={'Accept': 'application/json'}, verify=self.verify, proxies=self.proxies, timeout=self.timeout)
274+
headers={'Accept': 'application/json'},
275+
verify=self.verify, proxies=self.proxies, timeout=self.timeout)
275276
resp.raise_for_status()
276277
self.authority_groups = [
277278
set(group['aliases']) for group in resp.json()['metadata']]

0 commit comments

Comments
 (0)