Skip to content

Commit 291965e

Browse files
committed
fix: missing list access
1 parent 3bae8d3 commit 291965e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/ResamplingFcstCV.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ ResamplingFcstCV = R6Class(
115115
n = length(x)
116116
(x[n] + 1L):(x[n] + horizon)
117117
})
118-
return(list(train = train_ids, test_ids))
118+
return(list(train = train_ids, test = test_ids))
119119
}
120120

121121
setnames(dt, "..row_id", "row_id")

0 commit comments

Comments
 (0)