Skip to content

Commit

Permalink
Merge pull request #98 from romainfrancois/fix_tk_augment_differences
Browse files Browse the repository at this point in the history
dplyr 1.0.8
  • Loading branch information
mdancho84 committed Nov 30, 2021
2 parents e011081 + 4f70c42 commit 725d0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/augment-tk_augment_differences.R
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ tk_augment_differences <- function(.data,
column_expr <- enquo(.value)
if (rlang::quo_is_missing(column_expr)) stop(call. = FALSE, "tk_augment_differences(.value) is missing.")
if (rlang::is_missing(.lags)) stop(call. = FALSE, "tk_augment_differences(.lags) is missing.")
if (rlang::is_missing(.differences)) stop(call. = FALSE, "tk_augment_differences(.differences) is missing.")
# if (rlang::is_missing(.differences)) stop(call. = FALSE, "tk_augment_differences(.differences) is missing.")
if (!any(.names == "auto")) {
if (length(.names) != length(.lags) * length(.differences)) {
rlang::abort(".names must be a vector of length ", length(.lags) * length(.differences))
Expand Down

0 comments on commit 725d0e9

Please sign in to comment.