Skip to content

Commit

Permalink
Update validate.table.R
Browse files Browse the repository at this point in the history
  • Loading branch information
hdvincelette committed Mar 22, 2024
1 parent d786613 commit b8f39a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/validate.table.R
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ validate.table <- function(x, y) {
for (a in 1:ncol(data.NA)) {
for (bb in 1:nrow(dict.datafield))
if (colnames(data.NA[a]) == dict.datafield$codeName[bb] &
dict.datafield$allowNull[bb] == "no" &
dict.datafield$allowNull[bb] == FALSE &
NA %in% (unique(data.NA[, a]))) {
warnings.df <- warnings.df %>%
dplyr::add_row(
Expand Down

0 comments on commit b8f39a7

Please sign in to comment.