Skip to content

Commit 6f9a6b0

Browse files
committed
Remove unused imports
1 parent efa4e74 commit 6f9a6b0

File tree

5 files changed

+0
-8
lines changed

5 files changed

+0
-8
lines changed

msgraph/core/client_factory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Licensed under the MIT License.
44
# ------------------------------------
55
import functools
6-
from typing import Optional
76

87
from requests import Session
98

msgraph/core/graph_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
# Copyright (c) Microsoft Corporation.
33
# Licensed under the MIT License.
44
# ------------------------------------
5-
from typing import List, Optional
6-
75
from requests import Request, Session
86

97
from .client_factory import HTTPClientFactory
10-
from .middleware.abc_token_credential import TokenCredential
11-
from .middleware.middleware import BaseMiddleware
128
from .middleware.request_context import RequestContext
139

1410
supported_options = ['scopes', 'custom_option']

msgraph/core/middleware/middleware.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Licensed under the MIT License.
44
# ------------------------------------
55
import ssl
6-
import uuid
76

87
from requests.adapters import HTTPAdapter
98
from urllib3 import PoolManager

tests/unit/test_client_factory.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
from msgraph.core.constants import CONNECTION_TIMEOUT, REQUEST_TIMEOUT
1111
from msgraph.core.enums import APIVersion, NationalClouds
1212
from msgraph.core.middleware.authorization import AuthorizationHandler
13-
from msgraph.core.middleware.middleware import BaseMiddleware, MiddlewarePipeline
1413

1514

1615
def test_initialize_with_default_config():

tests/unit/test_graph_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from msgraph.core.enums import APIVersion, NationalClouds
1212
from msgraph.core.graph_client import GraphClient
1313
from msgraph.core.middleware.authorization import AuthorizationHandler
14-
from msgraph.core.middleware.middleware import BaseMiddleware, MiddlewarePipeline
1514

1615

1716
def test_graph_client_with_default_middleware():

0 commit comments

Comments
 (0)