Skip to content

Commit

Permalink
Update crew_launcher_slurm.R
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly authored Sep 9, 2023
1 parent b3e2220 commit 7650b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/crew_launcher_slurm.R
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ crew_class_launcher_slurm <- R6::R6Class(
character(0L),
sprintf(
"#SBATCH --mem-per-cpu=%sM",
as.integer(1024L * self$slurm_memory_gigabytes_per_cpu)
as.integer(round(x = 1024 * self$slurm_memory_gigabytes_per_cpu, digits = 0L))

Check warning on line 274 in R/crew_launcher_slurm.R

View workflow job for this annotation

GitHub Actions / lint

file=R/crew_launcher_slurm.R,line=274,col=81,[line_length_linter] Lines should not be more than 80 characters.
)
),
if_any(
Expand Down

0 comments on commit 7650b55

Please sign in to comment.