Skip to content

Commit b1f0432

Browse files
committed
Merge branch 'dev' into ds/docs-style
2 parents eb55b8b + d55a076 commit b1f0432

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.Rbuildignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
^pkgdown$
1313
^doc$
1414
^Meta$
15-
^.bumpversion.cfg$
1615
^.git-blame-ignore-revs$
1716
^.lintr$
1817
^DEVELOPMENT.md$

.bumpversion.cfg

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ inst/doc
77
docs
88
/doc/
99
/Meta/
10-
*.DS_Store
10+
*.DS_Store
11+
12+
# Delphi custom
13+
renv/
14+
renv.lock
15+
.Rprofile

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ importFrom(checkmate,assert_list)
7979
importFrom(checkmate,assert_logical)
8080
importFrom(checkmate,assert_numeric)
8181
importFrom(checkmate,assert_scalar)
82+
importFrom(checkmate,checkInt)
8283
importFrom(checkmate,check_atomic)
8384
importFrom(checkmate,check_data_frame)
8485
importFrom(checkmate,test_set_equal)

R/autoplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ autoplot.epi_df <- function(
5050
.color_by <- match.arg(.color_by)
5151
.facet_by <- match.arg(.facet_by)
5252

53-
assert(anyInfinite(.max_facets), assert_int(.max_facets), combine = "or")
53+
assert(anyInfinite(.max_facets), checkInt(.max_facets), combine = "or")
5454
assert_character(.base_color, len = 1)
5555

5656
key_cols <- key_colnames(object)

R/epiprocess.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#' @importFrom checkmate assert assert_scalar assert_data_frame anyMissing
88
#' assert_logical assert_list assert_character assert_class
99
#' assert_int assert_numeric check_data_frame vname check_atomic
10-
#' anyInfinite test_subset test_set_equal
10+
#' anyInfinite test_subset test_set_equal checkInt
1111
#' @importFrom cli cli_abort cli_inform cli_warn
1212
#' @name epiprocess
1313
"_PACKAGE"

0 commit comments

Comments
 (0)