Skip to content

Commit 71b6a8a

Browse files
committed
remove added type hint - bring it back if/when it becomes necessary
1 parent e6113d9 commit 71b6a8a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

causalpy/pymc_models.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,12 @@ def fit(self, X, y, coords: Optional[Dict[str, Any]] = None) -> None:
122122
)
123123
return self.idata
124124

125-
def predict(self, X: np.ndarray):
125+
def predict(self, X):
126126
"""
127127
Predict data given input data `X`
128128
129129
.. caution::
130130
Results in KeyError if model hasn't been fit.
131-
132131
"""
133132

134133
# Ensure random_seed is used in sample_prior_predictive() and

0 commit comments

Comments
 (0)