Skip to content

Commit cee786e

Browse files
committed
style: styler (GHA)
1 parent df6ba60 commit cee786e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

R/methods-epi_df.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ as_tibble.epi_df <- function(x, ...) {
1212
# Decaying drops the class and metadata. `as_tibble.grouped_df` drops the
1313
# grouping and should be called by `NextMethod()` in the current design.
1414
# See #223 for discussion of alternatives.
15-
if (attr(x, "no_decay_to_tibble") %||% FALSE) return(ungroup(x))
15+
if (attr(x, "no_decay_to_tibble") %||% FALSE) {
16+
return(ungroup(x))
17+
}
1618
decay_epi_df(NextMethod())
1719
}
1820

0 commit comments

Comments
 (0)