Skip to content

Commit

Permalink
typing fix (Azure#11985)
Browse files Browse the repository at this point in the history
* typing fix
  • Loading branch information
xiangyan99 authored and changlong-liu committed Jul 13, 2020
1 parent f764492 commit 48b7812
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sdk/core/azure-core/azure/core/polling/_poller.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@
except ImportError:
from urllib.parse import urlparse

from typing import Any, Callable, Union, List, Optional, Tuple, TypeVar, Generic
from typing import TYPE_CHECKING, TypeVar, Generic
from azure.core.pipeline.transport._base import HttpResponse
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.common import with_current_context

if TYPE_CHECKING:
from typing import Any, Callable, Union, List, Optional, Tuple


PollingReturnType = TypeVar("PollingReturnType")


Expand Down

0 comments on commit 48b7812

Please sign in to comment.