File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ def __str__(self):
89
89
90
90
91
91
class Positive (SomeEffect ):
92
- """An extension of TestOutcome representing that the expected causal effect should be positive."""
92
+ """An extension of TestOutcome representing that the expected causal effect should be positive.
93
+ Currently only single values are supported for the test value"""
93
94
94
95
def apply (self , res : CausalTestResult ) -> bool :
95
96
if res .ci_valid () and not super ().apply (res ):
@@ -104,7 +105,8 @@ def apply(self, res: CausalTestResult) -> bool:
104
105
105
106
106
107
class Negative (SomeEffect ):
107
- """An extension of TestOutcome representing that the expected causal effect should be negative."""
108
+ """An extension of TestOutcome representing that the expected causal effect should be negative.
109
+ Currently only single values are supported for the test value"""
108
110
109
111
def apply (self , res : CausalTestResult ) -> bool :
110
112
if res .ci_valid () and not super ().apply (res ):
You can’t perform that action at this time.
0 commit comments