Skip to content

Commit

Permalink
explicitly match on $i
Browse files Browse the repository at this point in the history
  • Loading branch information
yjunechoe committed Sep 8, 2024
1 parent 5a00f4b commit 91733c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/get_agent_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,8 @@ get_agent_report <- function(

# nocov start

validation_set <- validation_set[report_tbl$i, ]
validation_set <- validation_set %>%
dplyr::filter(.data$i == report_tbl$i)
eval <- eval[report_tbl$i]
extracts <-
agent$extracts[
Expand Down

0 comments on commit 91733c0

Please sign in to comment.