Skip to content

Commit

Permalink
Use latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrerebeau committed Jan 2, 2025
1 parent e0079f8 commit 8cd22b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ BugReports: https://github.com/tesselle/tabula/issues
Depends:
R (>= 3.5)
Imports:
arkhe (>= 1.7.0),
arkhe (>= 1.9.0),
graphics,
grDevices,
khroma (>= 1.14.0),
Expand Down
4 changes: 2 additions & 2 deletions R/validate.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ setValidity(
# arkhe::validate(arkhe::assert_length(.Data, n)),
# arkhe::validate(arkhe::assert_length(labels, n)),
arkhe::validate(arkhe::assert_length(size, n)),
arkhe::validate(arkhe::assert_scalar(method, "character"))
arkhe::validate(arkhe::assert_length(method, 1))
)

## Return conditions, if any
Expand All @@ -45,7 +45,7 @@ setValidity(
cnd <- list(
arkhe::validate(arkhe::assert_length(labels, m)),
arkhe::validate(arkhe::assert_length(size, n)),
arkhe::validate(arkhe::assert_scalar(method, "character"))
arkhe::validate(arkhe::assert_length(method, 1))
)

## Return conditions, if any
Expand Down

0 comments on commit 8cd22b4

Please sign in to comment.