Skip to content

Commit fcd0b59

Browse files
committed
Clean up
1 parent a9cf227 commit fcd0b59

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
"editor.formatOnSave": true,
55
"python.formatting.provider": "yapf",
66
"python.linting.pylintEnabled": true,
7-
"python.pythonPath": "/Users/jobala/.local/share/virtualenvs/msgraph-sdk-python-core-GPsXRX8j/bin/python",
87
}

msgraphcore/graph_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ def wrapper(*args, **kwargs):
1919
headers = kwargs.pop('headers', {})
2020

2121
for option in supported_options:
22-
op = kwargs.pop(option, None)
22+
mw_option = kwargs.pop(option, None)
2323

24-
if op:
25-
mw_control.update({option: op})
24+
if mw_option:
25+
mw_control.update({option: mw_option})
2626

2727
req_context = RequestContext(mw_control, headers)
2828

samples/samples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from msgraphcore.graph_client import GraphClient
77

88
scopes = ['user.read']
9-
browser_credential = InteractiveBrowserCredential(client_id='888bce95-fde5-40f8-a7d4-2debf0f96f4c')
9+
browser_credential = InteractiveBrowserCredential(client_id='YOUR_CLIENT_ID')
1010
graph_session = GraphClient(credential=browser_credential)
1111

1212

0 commit comments

Comments
 (0)