fix: remove shadowed os import in cluster_info

Inline `import os` at line 663 shadowed the top-level import,
causing flake8 F402.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
feature/k8s-jobs
Prathamesh Musale 2026-03-06 09:26:12 +00:00
parent dc60695100
commit ac73bb2a73
1 changed files with 0 additions and 2 deletions

View File

@ -660,8 +660,6 @@ class ClusterInfo:
)
# Derive job name from file path: docker-compose-<name>.yml -> <name>
import os
base = os.path.basename(job_file)
# Strip docker-compose- prefix and .yml suffix
job_name = base