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 6, 2024
1 parent f9e75ff commit 823d63d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions R/get_resources.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
show_resources <- function(dataset_name){
show_resources <- function(dataset_name) {
# throw error if name type/format is invalid
check_dataset_name(dataset_name)

Expand All @@ -21,4 +21,4 @@ show_resources <- function(dataset_name){
return_value <- list("id" = all_ids, "names" = all_names)

return(return_value)
}
}
2 changes: 1 addition & 1 deletion R/show_datasets.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
show_datasets <- function(){
show_datasets <- function() {
data_sets <- phs_GET("package_list", "")$result

return(data_sets)
Expand Down
4 changes: 2 additions & 2 deletions R/show_resources.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
show_resources <- function(dataset_name){
show_resources <- function(dataset_name) {
# throw error if name type/format is invalid
check_dataset_name(dataset_name)

Expand All @@ -21,4 +21,4 @@ show_resources <- function(dataset_name){
return_value <- list("id" = all_ids, "names" = all_names)

return(return_value)
}
}

0 comments on commit 823d63d

Please sign in to comment.