Skip to content

Commit 2c20bb4

Browse files
authored
Merge pull request #268 from cnotin/patch-1
Fix "credentials" typo in example code
2 parents f013d1b + 0e58f55 commit 2c20bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ from azure.identity.aio import EnvironmentCredential
3939
from msgraph_beta import GraphServiceClient
4040

4141
scopes = ['User.Read', 'Mail.Read']
42-
credential=EnvironmentCredential()
43-
client = GraphServiceClient(credentials, scopes=scopes)
42+
credential = EnvironmentCredential()
43+
client = GraphServiceClient(credential, scopes=scopes)
4444
```
4545

4646
## 3. Make requests against the service

0 commit comments

Comments
 (0)