Skip to content

Commit 2f7f0c0

Browse files
author
Stephanie Owen
committed
fix error in format_tbl_data
1 parent 37c8c98 commit 2f7f0c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/table_report_card.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ format_tbl_data <- function(file,
6565
term_year,
6666
dir) {
6767
if(stringr::str_detect(file, "csv$")) {
68-
out <- base::read.csv(file)
68+
out <- read.csv(file)
6969
} else if(stringr::str_detect(file, "xlsx$")) {
7070
out <- readxl::read_excel(file)
7171
} else {

0 commit comments

Comments
 (0)