Skip to content

Commit 790a4a4

Browse files
committed
remove unused var
Signed-off-by: Nathaniel <[email protected]>
1 parent 3385c57 commit 790a4a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

causalpy/pymc_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def build_model(self, X, t, coords):
410410
b = pm.Normal("b", mu=0, sigma=1, dims="coeffs")
411411
mu = pm.math.dot(X_data, b)
412412
p = pm.Deterministic("p", pm.math.invlogit(mu))
413-
t_pred = pm.Bernoulli("t_pred", p=p, observed=t_data, dims="obs_ind")
413+
pm.Bernoulli("t_pred", p=p, observed=t_data, dims="obs_ind")
414414

415415
def fit(self, X, t, coords):
416416
"""Draw samples from posterior, prior predictive, and posterior predictive

0 commit comments

Comments
 (0)