Skip to content

Commit 4048d8e

Browse files
committed
fixed linter
1 parent 9c79b62 commit 4048d8e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/xpk/commands/cluster.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
from ..utils.templates import get_templates_absolute_path
8282
import shutil
8383
import os
84-
import time
8584

8685
CLUSTER_PREHEAT_JINJA_FILE = 'cluster_preheat.yaml.j2'
8786

@@ -1421,7 +1420,7 @@ def install_mldiagnostics_yaml(artifact_filename: str):
14211420
try:
14221421
os.remove(artifact_filename)
14231422
xpk_print(f'Successfully deleted local file: {artifact_filename}')
1424-
1423+
14251424
except PermissionError:
14261425
xpk_print(f'Failed to delete file {artifact_filename} due to Permission Error.')
14271426

@@ -1470,7 +1469,7 @@ def install_diagon_prerequisites():
14701469
return return_code
14711470

14721471
cert_webhook_ready = wait_for_deployment_ready(cert_webhook_deployment_name, cert_webhook_namespace_name)
1473-
if cert_webhook_ready:
1472+
if cert_webhook_ready:
14741473

14751474
webhook_package = 'mldiagnostics-injection-webhook'
14761475
webhook_version = 'v0.3.0'

0 commit comments

Comments
 (0)