Skip to content

Commit

Permalink
remove trailing comma in glue() that causes error in R 4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
neilstats committed Mar 3, 2024
1 parent 48ab7c7 commit b4d30f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ argset <- function(x){
name <- paste(deparse(substitute(x)), collapse = '')
value <- paste(deparse(x), collapse = '')
if (!identical(x, eval(formals(ckbplotr::forest_data)[[name]]))){
glue::glue('{name} = {value}',)
glue::glue('{name} = {value}')
}
}

Expand Down

0 comments on commit b4d30f2

Please sign in to comment.