Skip to content

Commit

Permalink
fix(run_ss3sim): Removes trailing comma in foreach code
Browse files Browse the repository at this point in the history
Thanks to @chamberlindw and @peterkuriyama for letting me know and suggesting a fix.

Close #399
  • Loading branch information
kellijohnson-NOAA committed Oct 2, 2023
1 parent 8e6a814 commit f51cbf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/run_ss3sim.r
Expand Up @@ -166,7 +166,7 @@ run_ss3sim <- function(iterations,
message("Running scenarios in parallel.")
ignore <- foreach::foreach(
x = arg_list, .packages = "ss3sim",
.verbose = FALSE,
.verbose = FALSE
) %dopar%
do.call("ss3sim_base", c(x, list(iterations = iterations, ...)))
}
Expand Down

0 comments on commit f51cbf7

Please sign in to comment.