You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like the validation_checks is warning that there are duplicate entries in the log, even when all entry_field_dupe are all false, I think the code needs to be changed from:
if (any(!preprocess_log$entry_field_dupe)) {
rlang::warn("Detected duplicate entry-field combination. The same item has been corrected at least twice in the log")
}
to
if (any(!preprocess_log$entry_field_dupe) == TRUE) {
rlang::warn("Detected duplicate entry-field combination. The same item has been corrected at least twice in the log")
}
It is just a warning and doesn't break the code, but it might confuse people who see it.
The text was updated successfully, but these errors were encountered:
It seems like the validation_checks is warning that there are duplicate entries in the log, even when all entry_field_dupe are all false, I think the code needs to be changed from:
to
It is just a warning and doesn't break the code, but it might confuse people who see it.
The text was updated successfully, but these errors were encountered: