Skip to content

Commit d18176b

Browse files
linting fixes
1 parent 1ba728d commit d18176b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudai/systems/slurm/strategy/slurm_command_gen_strategy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def generate_srun_command(
148148

149149
if self.slurm_system.extra_srun_args:
150150
srun_command_parts.append(self.slurm_system.extra_srun_args)
151-
151+
152152
return srun_command_parts
153153

154154
def generate_test_command(
@@ -174,7 +174,7 @@ def _write_sbatch_script(self, args: Dict[str, Any], env_vars_str: str, srun_com
174174
f"#SBATCH --job-name={args['job_name']}",
175175
f"#SBATCH -N {args['num_nodes']}",
176176
]
177-
177+
178178
if "output" not in args:
179179
batch_script_content.append(f"#SBATCH --output={os.path.join(output_path, 'stdout.txt')}")
180180
if "error" not in args:

0 commit comments

Comments
 (0)