Skip to content

Commit 0578435

Browse files
committed
rerun codecov
1 parent 9f239e3 commit 0578435

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,3 @@ inst/doc
7575
*.docx
7676
*.ppt
7777
*.pptx
78-
79-
# Generic archives (if you also want to block ZIPs, etc.)
80-
*.zip
81-
*.tar
82-
*.gz

R/gridify-classes.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,9 @@ gridify <- function(
567567
if (inherits(object, "formula")) {
568568
if (requireNamespace("gridGraphics")) {
569569
object_expr <- object[[2]]
570-
object <- grid::grid.grabExpr(gridGraphics::grid.echo(function() eval(object_expr)))
570+
object <- grid::grid.grabExpr(
571+
gridGraphics::grid.echo(function() eval(object_expr))
572+
)
571573
} else {
572574
stop("Please install gridGraphics to use it in gridify.")
573575
}

0 commit comments

Comments
 (0)