Skip to content

Commit

Permalink
Remove path argument
Browse files Browse the repository at this point in the history
  • Loading branch information
elipousson committed Dec 13, 2024
1 parent a6919d7 commit 60c036d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/wb_save.R
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ write_xlsx_ext <- function(x,
# If x is a wbWorkbook object, use wb_save_ext to save to file
# All other arguments except file, path, and overwrite are ignored
if (is_wb(x)) {
return(wb_save_ext(x, file = file, path = path, overwrite = overwrite))
return(wb_save_ext(x, file = file, overwrite = overwrite))
}

bare_list_input <- is_bare_list(x)
Expand Down

0 comments on commit 60c036d

Please sign in to comment.