Skip to content

Commit a8ba56e

Browse files
committed
Fix linting
1 parent ef1512a commit a8ba56e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/aks-preview/azext_aks_preview/custom.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,6 @@ def __init__(self, location, resource_id):
571571
error = e
572572
# Wait before retry to allow workspace tables to become available
573573
if attempt < 2:
574-
import time
575574
time.sleep(30)
576575
else:
577576
raise error

src/aks-preview/azext_aks_preview/managed_cluster_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
CONST_TRANSIT_ENCRYPTION_TYPE_MTLS,
5757
CONST_ADVANCED_NETWORKPOLICIES_L7,
5858
)
59-
from azure.core.exceptions import HttpResponseError, ResourceExistsError
6059
from azext_aks_preview.azurecontainerstorage._consts import (
6160
CONST_ACSTOR_EXT_INSTALLATION_NAME,
6261
CONST_ACSTOR_V1_EXT_INSTALLATION_NAME,
@@ -101,6 +100,7 @@
101100
from azext_aks_preview.custom import (
102101
ensure_container_insights_for_monitoring_preview,
103102
)
103+
from azure.core.exceptions import HttpResponseError, ResourceExistsError
104104
from azure.cli.command_modules.acs._client_factory import get_graph_client
105105
from azure.cli.command_modules.acs._consts import (
106106
CONST_OUTBOUND_TYPE_LOAD_BALANCER,

0 commit comments

Comments
 (0)