From 13b394f898f39ae0a9d57e7aa18612b0530189a8 Mon Sep 17 00:00:00 2001 From: Michael <50142889+Mike-Hanna@users.noreply.github.com> Date: Wed, 21 Aug 2024 13:57:30 -0400 Subject: [PATCH] Update utils.r format fix --- R/utils.r | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/utils.r b/R/utils.r index a2cfaef4..1fd26ab1 100644 --- a/R/utils.r +++ b/R/utils.r @@ -55,7 +55,7 @@ compact <- function(x) { is_empty <- function(x) length(x) == 0 - keep_last <- function(...) { +keep_last <- function(...) { x <- c(...) x[!duplicated(names(x), fromLast = TRUE)] }