From b8a9b0b25ace2b9470db06d5e1d7cebb449c6ba5 Mon Sep 17 00:00:00 2001 From: Vincent Arel-Bundock Date: Wed, 23 Oct 2024 07:44:53 -0400 Subject: [PATCH] sanity bug --- R/sanity.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/sanity.R b/R/sanity.R index 92b64bad..8b660452 100644 --- a/R/sanity.R +++ b/R/sanity.R @@ -12,7 +12,7 @@ sanitize_i <- function(i, x, pre_group_i = FALSE, lazy = TRUE) { attr(out, "head") <- integer() } else { out <- seq_len(nrow(x)) - attr(out, "null") <- TRUE + attr(out, "null") <- FALSE attr(out, "body") <- out[out > 0] attr(out, "head") <- out[out < 1] }