Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 5, 2023
1 parent 159098f commit 8bfbeb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils_format.R
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@
col_len <- vapply(final_table, function(i) length(colnames(i)), numeric(1))

# remove non matching columns
if (!all(col_len) == max(col_len)) {
if (!all(col_len == max(col_len))) {
all_columns <- unique(unlist(lapply(final_table, colnames)))
for (i in seq_along(final_table)) {
missing_columns <- setdiff(all_columns, colnames(final_table[[i]]))
Expand Down

0 comments on commit 8bfbeb7

Please sign in to comment.