Skip to content

Commit ad37220

Browse files
gavinbarronbaywet
authored andcommitted
undoing autoformatting
1 parent 331ffd2 commit ad37220

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/msgraph_core/graph_client_factory.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)