Skip to content

Commit

Permalink
Avoid expansion of nested objects as DF columns.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Nov 28, 2023
1 parent af591a0 commit 4d6adf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/readDataFrame.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ readDataFrame <- function(path, ...) {
}

} else {
columns[[col]] <- altReadObject(file.path(path, "other_columns", expected), ...)
columns[[col]] <- S4Vectors::I(altReadObject(file.path(path, "other_columns", expected), ...))
}
}

Expand Down

0 comments on commit 4d6adf5

Please sign in to comment.