Skip to content

Commit c644147

Browse files
committed
Removed deubugging print satement from NoEffect class
1 parent e7371aa commit c644147

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

causal_testing/testing/causal_effect.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ def apply(self, res: CausalTestResult) -> bool:
6969
if isinstance(res.effect_estimate.ci_high, Iterable)
7070
else [res.effect_estimate.value]
7171
)
72-
for ci_low, ci_high, v in zip(res.effect_estimate.ci_low, res.effect_estimate.ci_high, value):
73-
print(not ((ci_low < 0 < ci_high) or abs(v) < self.atol))
7472
return (
7573
sum(
7674
not ((ci_low < 0 < ci_high) or abs(v) < self.atol)

0 commit comments

Comments
 (0)