Skip to content

Commit 4bc0cb8

Browse files
committed
Fix lint errors
1 parent 612bc15 commit 4bc0cb8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

msgraphcore/graph_session.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ class GraphSession(Session):
1515
1616
Extends Session by adding support for middleware options and middleware pipeline
1717
"""
18-
def __init__(self, credential: TokenCredential, scopes: [str] = ['.default'], middleware: list = []):
18+
def __init__(self,
19+
credential: TokenCredential,
20+
scopes: [str] = ['.default'],
21+
middleware: list = []
22+
):
1923
super().__init__()
2024
self.headers.update({'sdkVersion': 'graph-python-' + SDK_VERSION})
2125
self._base_url = BASE_URL

0 commit comments

Comments
 (0)