Skip to content

Commit a2e14ef

Browse files
committed
fix some copilot comments
1 parent 337a56d commit a2e14ef

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

R/ZZZ.R

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ download_params_schema <- function(
105105
}
106106

107107
.schema_cache <- new.env()
108-
get_params_schema <- function(
109-
app_version = Sys.getenv("INPUTS_DATA_VERSION", "dev")
110-
) {
108+
get_params_schema <- function() {
111109
if (!exists("schema", envir = .schema_cache)) {
112110
.schema_cache[["schema"]] <- file.path("app_data", "params-schema.json") |>
113111
readr::read_file() |>

R/fct_load_provider_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#' Read the parquet file containing a selected type of provider data.
66
#'
77
#' @param file The name of the file to read.
8-
#' @param inputs_data_version The version of the inputs data to use.
8+
#' @param data_path The path to the directory containing the parquet files.
99
#' @return A tibble.
1010
load_provider_data <- function(file, data_path = file.path("app_data")) {
1111
if (!exists(file, envir = .data_cache)) {

man/load_provider_data.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)