Skip to content

Commit 91c9500

Browse files
authored
[Communication] july pylint next (Azure#36436)
* chat * phone numbers
1 parent 5fe1eb4 commit 91c9500

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

sdk/communication/azure-communication-chat/azure/communication/chat/_chat_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See License.txt in the project root for
44
# license information.
55
# --------------------------------------------------------------------------
6-
from typing import TYPE_CHECKING
6+
from typing import TYPE_CHECKING, Any
77
from uuid import uuid4
88
from urllib.parse import urlparse
99

@@ -27,7 +27,6 @@
2727

2828
if TYPE_CHECKING:
2929
# pylint: disable=unused-import,ungrouped-imports
30-
from typing import Any, Callable, Dict, Generic, List, Optional, TypeVar, Union
3130
from datetime import datetime
3231
from azure.core.paging import ItemPaged
3332

sdk/communication/azure-communication-chat/azure/communication/chat/_chat_thread_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See License.txt in the project root for
44
# license information.
55
# --------------------------------------------------------------------------
6-
from typing import TYPE_CHECKING
6+
from typing import TYPE_CHECKING, Any, List, Optional, Tuple
77

88
from urllib.parse import urlparse
99

@@ -36,7 +36,6 @@
3636

3737
if TYPE_CHECKING:
3838
# pylint: disable=unused-import,ungrouped-imports
39-
from typing import Any, Callable, Dict, Generic, List, Optional, TypeVar, Union, Tuple
4039
from datetime import datetime
4140
from azure.core.paging import ItemPaged
4241

sdk/communication/azure-communication-phonenumbers/azure/communication/phonenumbers/siprouting/_sip_routing_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
from typing import TYPE_CHECKING # pylint: disable=unused-import
7+
from typing import TYPE_CHECKING, List
88
from urllib.parse import urlparse
99

1010
from azure.core.tracing.decorator import distributed_trace
@@ -22,7 +22,6 @@
2222
from .._version import SDK_MONIKER
2323

2424
if TYPE_CHECKING:
25-
from typing import Optional, Iterable, List, Any
2625
from azure.core.credentials import TokenCredential
2726

2827

sdk/communication/azure-communication-phonenumbers/azure/communication/phonenumbers/siprouting/aio/_sip_routing_client_async.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
from typing import TYPE_CHECKING # pylint: disable=unused-import
7+
from typing import TYPE_CHECKING, List
88
from urllib.parse import urlparse
99

1010
from azure.core.async_paging import AsyncItemPaged, AsyncList
@@ -24,7 +24,6 @@
2424
from ..._version import SDK_MONIKER
2525

2626
if TYPE_CHECKING:
27-
from typing import List, Any
2827
from azure.core.credentials_async import AsyncTokenCredential
2928

3029

0 commit comments

Comments
 (0)