Skip to content

Commit 7657cf3

Browse files
committed
chore: resolve lint warnings
1 parent 0007361 commit 7657cf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/tm_front_page.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ get_table_tags <- function(tables, ns) {
227227
tableOutput(ns(paste0("table_", idx)))
228228
)
229229
}))
230-
return(table_tags)
230+
table_tags
231231
}
232232

233233
get_footer_tags <- function(footnotes) {
@@ -254,11 +254,11 @@ convert_metadata_to_dataframe <- function(raw_metadata, datanames) {
254254
if (is.null(metadata)) {
255255
return(data.frame(Dataset = character(0), Name = character(0), Value = character(0)))
256256
}
257-
return(data.frame(
257+
data.frame(
258258
Dataset = dataname,
259259
Name = names(metadata),
260260
Value = unname(unlist(lapply(metadata, as.character)))
261-
))
261+
)
262262
}, raw_metadata, datanames, SIMPLIFY = FALSE)
263263
do.call(rbind, output)
264264
}

0 commit comments

Comments
 (0)