From 3afb62b267db3a6f92f2a91d3212ad88c0b2d40a Mon Sep 17 00:00:00 2001 From: Neil Katin Date: Fri, 22 May 2020 19:15:27 -0700 Subject: [PATCH] One of the examples in the README was not legal python syntax. I updated the example to match what the source seems to want. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78d56abd..7702b367 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ There will be some variations for different flows. They are demonstrated in from msal import PublicClientApplication app = PublicClientApplication( "your_client_id", - "authority": "https://login.microsoftonline.com/Enter_the_Tenant_Name_Here") + authority="https://login.microsoftonline.com/Enter_the_Tenant_Name_Here") ``` Later, each time you would want an access token, you start by: