Skip to content

Commit ed244ee

Browse files
authored
Fix a missing comma in the inline documentation
That line was presumably copied from here https://github.com/AzureAD/microsoft-authentication-library-for-python/blob/v0.2.0/sample/username_password_sample.py So this time we switch the sequence of the 2 lines, so that it will be less likely to go wrong in future documentation copy & paste work flow.
1 parent 81e8ddc commit ed244ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/client_credential_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
{
55
"authority": "https://login.microsoftonline.com/organizations",
66
"client_id": "your_client_id",
7+
"scope": ["https://graph.microsoft.com/.default"],
78
"secret": "This is a sample only. You better NOT persist your password."
8-
"scope": ["https://graph.microsoft.com/.default"]
99
}
1010
1111
You can then run this sample with a JSON configuration file:

0 commit comments

Comments
 (0)