ropensci / piggyback

:package: for using large(r) data files on GitHub
https://docs.ropensci.org/piggyback
GNU General Public License v3.0
185 stars 26 forks source link

`pb_list()` doesn't respect the option `piggyback.verbose` #90

Closed mrcaseb closed 2 years ago

mrcaseb commented 2 years ago

Functions like pb_releases() respect the option and don't print to console if it is set to FALSE. I think pb_list() should do the same?

options(piggyback.verbose = FALSE)
assets <- piggyback::pb_list(repo = "nflverse/nflverse-data")
#> ℹ Running gh query
#> ℹ Running gh query, got 100 records of about 500
#> ℹ Running gh query, got 200 records of about 500
#> ℹ Running gh query, got 300 records of about 500
#> ℹ Running gh query, got 400 records of about 500
#> ℹ Running gh query
#> ℹ Running gh query, got 100 records of about 300
#> ℹ Running gh query, got 200 records of about 300
#> ℹ Running gh query
#> ℹ Running gh query, got 100 records of about 200

Created on 2022-08-05 by the reprex package (v2.0.1)