Skip to content

Commit b6009cb

Browse files
move TODOs to GH issue
1 parent fde76e7 commit b6009cb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

causal_testing/testing/causal_test_outcome.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class Positive(CausalTestOutcome):
4040
"""An extension of TestOutcome representing that the expected causal effect should be positive."""
4141

4242
def apply(self, res: CausalTestResult) -> bool:
43-
# TODO: confidence intervals?
4443
if res.test_value.type == "ate":
4544
return res.test_value.value > 0
4645
if res.test_value.type == "risk_ratio":
@@ -52,7 +51,6 @@ class Negative(CausalTestOutcome):
5251
"""An extension of TestOutcome representing that the expected causal effect should be negative."""
5352

5453
def apply(self, res: CausalTestResult) -> bool:
55-
# TODO: confidence intervals?
5654
if res.test_value.type == "ate":
5755
return res.test_value.value < 0
5856
if res.test_value.type == "risk_ratio":

0 commit comments

Comments
 (0)