Skip to content

Commit e499737

Browse files
committed
suppress indendation linting on a controversial line
1 parent aa9b6f4 commit e499737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/slide.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ full_date_seq <- function(x, before, after, time_step) {
828828
# `tsibble` classes apparently can't be added to in different units, so even
829829
# if `time_step` is provided by the user, use a value-1 unitless step.
830830
if (inherits(x$time_value, c("yearquarter", "yearweek", "yearmonth")) ||
831-
is.numeric(x$time_value)) {
831+
is.numeric(x$time_value)) { # nolint: indentation_linter
832832
all_dates <- seq(min(x$time_value), max(x$time_value), by = 1L)
833833

834834
if (before != 0) {

0 commit comments

Comments
 (0)