Skip to content

Commit 5a1d34a

Browse files
committed
Fix build.
1 parent 13d2790 commit 5a1d34a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sdk/communication/azure-communication-callingserver/azure/communication/callingserver/aio/_content_downloader_async.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# disabled unsubscriptable-object because of pylint bug referenced here:
99
# https://github.com/PyCQA/pylint/issues/3882
1010

11-
from typing import IO, TYPE_CHECKING
11+
from typing import IO, Optional, TYPE_CHECKING
1212
from urllib.parse import urlparse
1313

1414
from azure.core.pipeline import PipelineResponse
@@ -20,13 +20,13 @@
2020

2121
if TYPE_CHECKING:
2222
# pylint: disable=unused-import,ungrouped-imports
23-
from typing import Any, Callable, Dict, Generic, Optional, TypeVar
23+
from typing import Any, Callable, Dict, Generic, TypeVar
2424

2525
T = TypeVar('T')
2626
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse],
2727
T, Dict[str, Any]], Any]]
2828

29-
class ContentDownloader():
29+
class ContentDownloader:
3030
def __init__(self, client, config, serializer, deserializer) -> None:
3131
self._client = client
3232
self._serialize = serializer
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
-e ../../../tools/azure-sdk-tools
2+
../../core/azure-core
23
-e ../../identity/azure-identity
34
-e ../../../tools/azure-devtools
45
-e ../azure-communication-identity
56
-e ../../../tools/vcrpy
67
../../nspkg/azure-communication-nspkg
7-
../../core/azure-core
88
aiohttp>=3.0; python_version >= '3.5'
99
parameterized
1010
validators

0 commit comments

Comments
 (0)