Remove extra pipe

Fixes #777
This commit is contained in:
Hadley Wickham 2020-10-04 16:05:58 -05:00
parent 3b11ca60db
commit 335a0cb291
1 changed files with 1 additions and 1 deletions

View File

@ -183,6 +183,6 @@ df %>% transpose() %>% str()
files <- dir("data", pattern = "\\.csv$")
files %>%
set_names(., basename(.)) %>%
map_df(safely(readr::read_csv), .id = "filename") %>%
map_df(safely(readr::read_csv), .id = "filename")
```