Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
pylint
  • Loading branch information
lmazuel committed Jul 22, 2019
commit d4d508de100124e11496a85c0dd07864fe36ae1f
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/async_paging.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#
# --------------------------------------------------------------------------
import logging
from typing import Iterator, AsyncIterator, TypeVar, Callable, Tuple, List, Optional, Awaitable
from typing import Iterator, AsyncIterator, TypeVar, Callable, Tuple, Optional, Awaitable


_LOGGER = logging.getLogger(__name__)
Expand Down
6 changes: 1 addition & 5 deletions sdk/core/azure-core/azure/core/paging.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@
# IN THE SOFTWARE.
#
# --------------------------------------------------------------------------
from typing import Dict, Any, List, Callable, Optional, TypeVar, Iterator, Tuple, TYPE_CHECKING # pylint: disable=unused-import
from typing import Dict, Any, List, Callable, Optional, TypeVar, Iterator, Tuple # pylint: disable=unused-import
import logging


if TYPE_CHECKING:
from .pipeline.transport.base import HttpResponse


_LOGGER = logging.getLogger(__name__)

ReturnType = TypeVar("ReturnType")
Expand Down