Skip to content

Commit f26ade8

Browse files
authored
Merge pull request statsmodels#5991 from bashtage/follow-up
MAINT: Remove comment no longer relevant
2 parents 5602c19 + 6cf9fbc commit f26ade8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

statsmodels/tsa/arima_model.py

-2
Original file line numberDiff line numberDiff line change
@@ -1528,8 +1528,6 @@ def forecast(self, steps=1, exog=None, alpha=.05):
15281528
2d array of the confidence interval for the forecast
15291529
"""
15301530
if exog is not None:
1531-
# TODO: make a convenience function for this. we're using the
1532-
# pattern elsewhere in the codebase
15331531
exog = array_like(exog, 'exog', maxdim=2)
15341532
if self.k_exog == 1 and exog.ndim == 1:
15351533
exog = exog[:, None]

0 commit comments

Comments
 (0)