Skip to content

Commit 750f249

Browse files
gavinbarronbaywet
authored andcommitted
resolve pylint issues
1 parent ad37220 commit 750f249

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/msgraph_core/graph_client_factory.py

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

src/msgraph_core/requests/batch_request_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import json
44
import re
55
import urllib.request
6-
from deprecated import deprecated
76
from io import BytesIO
87
from typing import Any, Optional, Union
98
from urllib.parse import urlparse
109
from uuid import uuid4
10+
from deprecated import deprecated
1111

1212
from kiota_abstractions.headers_collection import HeadersCollection as RequestHeaders
1313
from kiota_abstractions.method import Method

0 commit comments

Comments
 (0)