dietrichson / ProPublicaR

R Functions to Interact with the ProPublica APIs
GNU General Public License v2.0
12 stars 4 forks source link

Do not import config #16

Closed andrie closed 1 year ago

andrie commented 1 year ago

Hi, maintainer of config here.

I am in the process of submitting a new version of config to CRAN, but my reverse dependencies fail on your package.

The reason seems to be that you are importing all of config, but you only actually use config::get() in your package.

The fix is quite simple, use:

# @importFrom config get

instead of

# @import config

I'll submit a PR to fix this, but can you please submit a new version to CRAN of your package to CRAN as soon as possible?

Andrie