Skip to content

Commit d8fd8e2

Browse files
committed
fix pre-commit error
Signed-off-by: yingguo-trt <244492186+yingguo-trt@users.noreply.github.com>
1 parent a22a680 commit d8fd8e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • tests/integration/defs/perf/disagg/utils

tests/integration/defs/perf/disagg/utils/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ def get_slurm_account() -> str:
6161
@staticmethod
6262
def get_slurm_job_name() -> str:
6363
"""Get SLURM job name: {SLURM_ACCOUNT}-{base}.
64-
64+
6565
Example: myaccount-unified.benchmark
6666
Customize base via SLURM_JOB_BASE_NAME env var (default: unified.benchmark)
6767
"""
6868
account = EnvManager.get_slurm_account()
6969
base = os.getenv("SLURM_JOB_BASE_NAME", "unified.benchmark")
70-
70+
7171
# Only use account as prefix if it's set and not a placeholder
7272
if account and not account.startswith("<"):
7373
return f"{account}-{base}"

0 commit comments

Comments
 (0)