Function pulll_total uses function total from package qtytools. But it does not @importFrom qtytools, and the DESCRIPTION file does not Import/Suggest/Depend upon qtytools. This leads to an error when running R CMD CHECK: tbltools needs qtytools to run, and so the package should explicitly declare that dependency.
However, when I add @importFrom qtytools total and add qtytools to the Import section of the DESCRIPTION file and run R CMD CHECK I get this error:
Warning in (function (dep_name, dep_ver = "*") :
Dependency package 'qtytools' not available.
Error: Dependency package(s) 'qtytools' not available.
This might be because qtytools actually lists tbltools in the Depends section of the DESCRIPTION file (link). That is, there seems to be a circular dependency between qtytools and tbltools. It is not explicity right now. But making it explicit seems to result in an error.
Function pulll_total uses function
totalfrom packageqtytools. But it does not@importFromqtytools, and the DESCRIPTION file does not Import/Suggest/Depend uponqtytools. This leads to an error when running R CMD CHECK:tbltoolsneedsqtytoolsto run, and so the package should explicitly declare that dependency.However, when I add
@importFrom qtytools totaland addqtytoolsto theImportsection of the DESCRIPTION file and run R CMD CHECK I get this error:This might be because
qtytoolsactually liststbltoolsin theDependssection of the DESCRIPTION file (link). That is, there seems to be a circular dependency betweenqtytoolsandtbltools. It is not explicity right now. But making it explicit seems to result in an error.