Skip to content

Commit

Permalink
fix: use the proper arguments as specified by generic
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhav committed Nov 9, 2023
1 parent 16d7585 commit 84f42b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions R/tdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,10 @@ get_code_tdata <- function(data) {
}

#' Extract `join_keys` from `tdata`
#' @param data (`tdata`) object
#' @param data A `tdata` object
#' @param ... Additional arguments (not used)
#' @export
join_keys.tdata <- function(data) { # nolint
join_keys.tdata <- function(data, ...) {
attr(data, "join_keys")
}

Expand Down
6 changes: 4 additions & 2 deletions man/join_keys.tdata.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84f42b8

Please sign in to comment.