Skip to content

Commit 48a9f2e

Browse files
committed
Explicitly set default = TRUE
1 parent 87de70c commit 48a9f2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/progress.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Progress <- R6::R6Class(
108108

109109
print = function(...) {
110110
if (
111-
isFALSE(getOption("dplyr.show_progress")) || # user specifies no progress
111+
isFALSE(getOption("dplyr.show_progress", default = TRUE)) || # user specifies no progress
112112
!interactive() || # not an interactive session
113113
!is.null(getOption("knitr.in.progress")) # dplyr used within knitr document
114114
) {

0 commit comments

Comments
 (0)