Closed andrie closed 1 year ago
Hi, maintainer of config here.
config
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.
config::get()
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
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 useconfig::get()
in your package.The fix is quite simple, use:
instead of
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