Skip to content

Commit

Permalink
Merge pull request #47 from krlmlr/f-pillar-ellipsis
Browse files Browse the repository at this point in the history
Add ellipsis to methods
  • Loading branch information
NickCH-K authored Oct 25, 2021
2 parents 680bf2f + 003b98c commit a2c309a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/type-sum.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' @importFrom tibble type_sum
#' @export
type_sum.tbl_pb <- function(x) "pibble"
type_sum.tbl_pb <- function(x, ...) "pibble"

brackets <- function(x) {
paste0("[", x, "]")
Expand All @@ -15,7 +15,7 @@ unique_brackets <- function(x, col) {
#' @importFrom rlang is_empty syms
#' @importFrom dplyr group_vars
#' @importFrom pillar dim_desc
tbl_sum.tbl_pb <- function(x) {
tbl_sum.tbl_pb <- function(x, ...) {
res <- c("A pibble" = dim_desc(x))

# .t and .i are named vectors and this causes problems
Expand Down

0 comments on commit a2c309a

Please sign in to comment.