We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98fee29 commit 78c1eeeCopy full SHA for 78c1eee
causal_testing/generation/abstract_causal_test_case.py
@@ -30,7 +30,7 @@ def __init__(
30
effect_modifiers: set[Variable] = None,
31
estimate_type: str = "ate",
32
):
33
- assert (treatment_variables in scenario.variables.values()), (
+ assert treatment_variables in scenario.variables.values(), (
34
"Treatment variables must be a subset of variables."
35
+ f" Instead got:\ntreatment_variables={treatment_variables}\nvariables={scenario.variables}"
36
)
0 commit comments