We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d73490e commit 0e58f55Copy full SHA for 0e58f55
README.md
@@ -39,8 +39,8 @@ from azure.identity.aio import EnvironmentCredential
39
from msgraph_beta import GraphServiceClient
40
41
scopes = ['User.Read', 'Mail.Read']
42
-credential=EnvironmentCredential()
43
-client = GraphServiceClient(credentials, scopes=scopes)
+credential = EnvironmentCredential()
+client = GraphServiceClient(credential, scopes=scopes)
44
```
45
46
## 3. Make requests against the service
0 commit comments