Skip to content

Commit

Permalink
[FIX] change list.append to base append
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedict Witzenberger committed Sep 13, 2021
1 parent d35d552 commit 599bfac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/dw_edit_chart.R
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ dw_edit_chart <- function(chart_id, api_key = "environment", title = "", intro =
additional_arguments <- list(...)

if (length(additional_arguments) > 0) {
call_body <- rlist::list.append(call_body, additional_arguments)
call_body <- append(call_body, additional_arguments)
}

# send call to API
Expand Down

0 comments on commit 599bfac

Please sign in to comment.