Skip to content

Commit

Permalink
remove unused magrittr imports
Browse files Browse the repository at this point in the history
--address some lintr flags; ref #41
  • Loading branch information
wibeasley committed Jan 1, 2021
1 parent c6db664 commit 453f231
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ Authors@R: c(
Imports:
httr,
jsonlite,
magrittr,
readr,
stats,
utils,
Expand Down
2 changes: 1 addition & 1 deletion R/get_file.R
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ get_file <-
# Main function. Call get_file_by_id
out <- vector("list", length(fileid))

for (i in seq_len(fileid)) {
for (i in seq_along(fileid)) {
out[[i]] <- get_file_by_id(
fileid = fileid[i],
dataset = dataset,
Expand Down

0 comments on commit 453f231

Please sign in to comment.