Skip to content

Commit

Permalink
fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Feb 26, 2024
1 parent 68303bc commit a5415a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ is_tab_active_js <- function(id, name) {
#' Check if an argument is a bounded numeric vector of length 3
#' Must follow form `c(value, min, max)`
#' @noRd
check_range_slider <- function(value, lower = -Inf, upper = Inf, finite = TRUE, null.ok = FALSE) {
check_range_slider <- function(
value, lower = -Inf, upper = Inf, finite = TRUE, null.ok = FALSE) { # nolint: object_name.
is_numeric <- checkmate::test_numeric(
value,
len = 3, any.missing = FALSE, finite = finite, null.ok = null.ok
Expand Down

0 comments on commit a5415a5

Please sign in to comment.