Skip to content

Commit e791d24

Browse files
committed
removed VERSION imports
1 parent 6786a5f commit e791d24

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

sdk/tables/azure-data-tables/azure/data/tables/_table_client.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from ._serialize import serialize_iso
2828
from ._deserialize import _return_headers_and_deserialized
2929
from ._error import _process_table_error
30-
from ._version import VERSION
3130
from ._models import TableEntityPropertiesPaged, UpdateMode, TableItem
3231

3332

@@ -59,7 +58,7 @@ def __init__(
5958
"""
6059
super(TableClient, self).__init__(account_url, table_name, credential=credential, **kwargs)
6160
self._client = AzureTable(self.url, pipeline=self._pipeline)
62-
61+
6362
@classmethod
6463
def from_connection_string(
6564
cls, conn_str, # type: str

sdk/tables/azure-data-tables/azure/data/tables/_table_service_client.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from ._base_client import parse_connection_str, TransportWrapper
1919
from ._models import LocationMode
2020
from ._error import _process_table_error
21-
from ._version import VERSION
2221
from ._table_client import TableClient
2322
from ._table_service_client_base import TableServiceClientBase
2423

@@ -47,7 +46,7 @@ def __init__(
4746

4847
super(TableServiceClient, self).__init__(account_url, service='table', credential=credential, **kwargs)
4948
self._client = AzureTable(self.url, pipeline=self._pipeline)
50-
49+
5150
@classmethod
5251
def from_connection_string(
5352
cls, conn_str, # type: str

sdk/tables/azure-data-tables/azure/data/tables/aio/_table_client_async.py

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from azure.core.tracing.decorator import distributed_trace
2121
from azure.core.tracing.decorator_async import distributed_trace_async
2222

23-
from .. import VERSION
2423
from .._base_client import parse_connection_str
2524
from .._entity import TableEntity
2625
from .._generated.aio import AzureTable

sdk/tables/azure-data-tables/azure/data/tables/aio/_table_service_client_async.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from azure.core.tracing.decorator import distributed_trace
1717
from azure.core.tracing.decorator_async import distributed_trace_async
1818

19-
from .. import VERSION, LocationMode
19+
from .. import LocationMode
2020
from .._base_client import parse_connection_str
2121
from .._generated.aio._azure_table_async import AzureTable
2222
from .._generated.models import TableServiceProperties, TableProperties, QueryOptions

0 commit comments

Comments
 (0)