Skip to content

Commit b314fa6

Browse files
configuring with air
1 parent c2ff8d1 commit b314fa6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

R/config.R

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,12 @@ Config <- S7::new_class(
200200
S7::class_double,
201201
default = quote(0.94),
202202
validator = \(value) {
203-
if (rlang::is_bare_numeric(value) &&
204-
length(value) == 1 &&
205-
value >= 0 &&
206-
value <= 1) {
203+
if (
204+
rlang::is_bare_numeric(value) &&
205+
length(value) == 1 &&
206+
value >= 0 &&
207+
value <= 1
208+
) {
207209
NULL
208210
} else {
209211
paste0(

0 commit comments

Comments
 (0)