@@ -37,7 +37,7 @@ def create_with_default_middleware(
3737 This is only used if the client parameter is None.
3838 client (Optional[httpx.AsyncClient]]): The httpx.AsyncClient instance to be used.
3939 Defaults to None.
40- When None, a default client will be created with the base url set to https://{host}/{api_version}.
40+ When None, a client will be created with base url set to https://{host}/{api_version}.
4141 host (NationalClouds): The national clound endpoint to be used.
4242 Defaults to NationalClouds.Global.
4343 This is only used if the client parameter is None.
@@ -66,16 +66,16 @@ def create_with_custom_middleware(
6666 """Applies a custom middleware chain to the HTTP Client
6767
6868 Args:
69- middleware(Optional[list[BaseMiddleware]]): Custom middleware list that will be used to create
70- a middleware pipeline. The middleware should be arranged in the order in which they will
71- modify the request.
69+ middleware(Optional[list[BaseMiddleware]]): Custom middleware list that will be used to
70+ create a middleware pipeline. The middleware should be arranged in the order in which
71+ they will modify the request.
7272 Defaults to None,
7373 api_version (APIVersion): The Graph API version to be used.
7474 Defaults to APIVersion.v1.
7575 This is only used if the client parameter is None.
7676 client (Optional[httpx.AsyncClient]): The httpx.AsyncClient instance to be used.
7777 Defaults to None.
78- When None, a default client will be created with the base url set to https://{host}/{api_version}.
78+ When None, a client will be created with base url set to https://{host}/{api_version}.
7979 host (NationalClouds): The national cloud endpoint to be used.
8080 Defaults to NationalClouds.Global.
8181 This is only used if the client parameter is None.
0 commit comments