Skip to content

Commit

Permalink
Appease the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
annakrystalli committed Sep 3, 2024
1 parent 10b641c commit 407a613
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/hub_validations_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ print.hub_validations <- function(x, ...) {

purrr::walk(
.x = get_filenames(x, unique = TRUE),
~ print_file(.x, x)
.f = function(file_name, x) print_file(file_name, x),
x = x
)
}
}
Expand Down Expand Up @@ -144,7 +145,8 @@ apply_cli_span_class <- function(x, class = "check_name") {
paste0("{.", class, " ", x, "}")
}

is_check_class <- function(x, class = c(
is_check_class <- function(x,
class = c(
"check_success", "check_failure",
"check_exec_warn", "check_error",
"check_exec_error", "check_info"
Expand Down

0 comments on commit 407a613

Please sign in to comment.