File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,7 @@ def create_with_default_middleware(
4949 """
5050 if client is None :
5151 client = KiotaClientFactory .get_default_client ()
52- client .base_url = GraphClientFactory ._get_base_url (
53- host , api_version )
52+ client .base_url = GraphClientFactory ._get_base_url (host , api_version )
5453
5554 middleware = KiotaClientFactory .get_default_middleware (options )
5655 telemetry_handler = GraphClientFactory ._get_telemetry_handler (options )
@@ -83,8 +82,7 @@ def create_with_custom_middleware(
8382 """
8483 if client is None :
8584 client = KiotaClientFactory .get_default_client ()
86- client .base_url = GraphClientFactory ._get_base_url (
87- host , api_version )
85+ client .base_url = GraphClientFactory ._get_base_url (host , api_version )
8886
8987 return GraphClientFactory ._load_middleware_to_client (client , middleware )
9088
@@ -126,7 +124,7 @@ def _load_middleware_to_client(
126124 mounts [pattern
127125 ] = GraphClientFactory ._replace_transport_with_custom_graph_transport (
128126 transport , middleware
129- )
127+ )
130128 client ._mounts = dict (sorted (mounts .items ()))
131129 return client
132130
You can’t perform that action at this time.
0 commit comments