Skip to content

Commit 06ac03e

Browse files
committed
Fix code formatting
1 parent e787bd0 commit 06ac03e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/msgraph_core/graph_client_factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def create_with_default_middleware(
4444
Returns:
4545
httpx.AsyncClient: An instance of the AsyncClient object
4646
"""
47-
client.base_url = GraphClientFactory._get_base_url(host, api_version) # type: ignore
47+
client.base_url = GraphClientFactory._get_base_url(host, api_version) # type: ignore
4848
middleware = KiotaClientFactory.get_default_middleware(options)
4949
telemetry_handler = GraphClientFactory._get_telemetry_handler(options)
5050
middleware.append(telemetry_handler)
@@ -70,7 +70,7 @@ def create_with_custom_middleware(
7070
host (NationalClouds): The national clound endpoint to be used.
7171
Defaults to NationalClouds.Global.
7272
"""
73-
client.base_url = GraphClientFactory._get_base_url(host, api_version) # type: ignore
73+
client.base_url = GraphClientFactory._get_base_url(host, api_version) # type: ignore
7474
return GraphClientFactory._load_middleware_to_client(client, middleware)
7575

7676
@staticmethod

0 commit comments

Comments
 (0)