Skip to content

Commit

Permalink
Style code (GHA)
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-hull committed May 9, 2024
1 parent 9dc2d5f commit 57c6345
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/show_resources.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ show_resources <- function(dataset_name) {
all_names <- purrr::map_chr(content$result$resources, ~ .x$name)
all_date_created <- purrr::map_chr(content$result$resources, ~ .x$created)
all_date_modified <- purrr::map_chr(content$result$resources, ~ .x$last_modified)
return_value <- tibble::tibble("res_id" = all_ids, "name" = all_names,
"created" = all_date_created, "last_modified" = all_date_modified)
return_value <- tibble::tibble(
"res_id" = all_ids, "name" = all_names,
"created" = all_date_created, "last_modified" = all_date_modified
)

return(return_value)
}

0 comments on commit 57c6345

Please sign in to comment.