Skip to content

Commit 567e53a

Browse files
authored
Merge pull request #106 from r-world-devs/maciekbanas/98/solve-check-issues
Fix setting ellipsis arguments.
2 parents 746c114 + c93bbf2 commit 567e53a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: GitAI
22
Title: Extracts Knowledge From Git Repositories
3-
Version: 0.0.0.9019
3+
Version: 0.0.0.9020
44
Authors@R: c(
55
person("Kamil", "Wais", , "[email protected]", role = c("aut", "cre")),
66
person("Krystian", "Igras", , "[email protected]", role = "aut"),

R/set_repos.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @return A \code{GitAI} object.
99
#' @export
1010
set_github_repos <- function(gitai,
11-
... = ...,
11+
...,
1212
verbose = is_verbose()) {
1313
if (is.null(gitai$gitstats)) {
1414
gitstats <- GitStats::create_gitstats()
@@ -17,7 +17,7 @@ set_github_repos <- function(gitai,
1717
}
1818
gitai$gitstats <- gitstats |>
1919
GitStats::set_github_host(
20-
... = ...,
20+
...,
2121
verbose = verbose
2222
)
2323
invisible(gitai)
@@ -33,7 +33,7 @@ set_github_repos <- function(gitai,
3333
#' @return A \code{GitAI} object.
3434
#' @export
3535
set_gitlab_repos <- function(gitai,
36-
... = ...,
36+
...,
3737
verbose = is_verbose()) {
3838
if (is.null(gitai$gitstats)) {
3939
gitstats <- GitStats::create_gitstats()
@@ -42,7 +42,7 @@ set_gitlab_repos <- function(gitai,
4242
}
4343
gitai$gitstats <- gitstats |>
4444
GitStats::set_gitlab_host(
45-
... = ...,
45+
...,
4646
verbose = verbose
4747
)
4848
invisible(gitai)

man/set_github_repos.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/set_gitlab_repos.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)