Open oganm opened 5 years ago
I'm sure it's that dplyr::filter
is using a list under the hood (getting called in structure_filter
I think), which would invoke the error. This would mean that strict
is working as intended
But as far as I understand, strict isn't supposed to check the code inside the packages for strictness.
What I am doing is not exactly good practice anyway but I don't really understand why I am getting an error from strict here.
I have a package that creates a structure named
list
aslist = structure(NA, class = 'result')
and exports it. I have isolated this and placed it in this package. What it does isn't really important but when this package is loaded, if I try to use dplyr, I get an errorThe code above does not try to use
list
which made me wonder if it can be avoided and why is it happening in the first place.