Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Communication] july pylint next #36436

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Any
from uuid import uuid4
from urllib.parse import urlparse

Expand All @@ -27,7 +27,6 @@

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Any, List, Optional, Tuple

from urllib.parse import urlparse

Expand Down Expand Up @@ -36,7 +36,6 @@

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# license information.
# --------------------------------------------------------------------------

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

from azure.core.tracing.decorator import distributed_trace
Expand All @@ -22,7 +22,6 @@
from .._version import SDK_MONIKER

if TYPE_CHECKING:
from typing import Optional, Iterable, List, Any
from azure.core.credentials import TokenCredential


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# license information.
# --------------------------------------------------------------------------

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

from azure.core.async_paging import AsyncItemPaged, AsyncList
Expand All @@ -24,7 +24,6 @@
from ..._version import SDK_MONIKER

if TYPE_CHECKING:
from typing import List, Any
from azure.core.credentials_async import AsyncTokenCredential


Expand Down