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 8d65cb13a0
commit b77037c73d
1 changed files with 0 additions and 2 deletions

View File

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