Skip to content

Commit 26f814e

Browse files
committed
Forgot to save
1 parent c86fcec commit 26f814e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

causal_testing/estimation/abstract_estimator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class Estimator(ABC):
3030
"""
3131

3232
def __init__(
33-
# pylint: disable=too-many-arguments,R0801
33+
# pylint: disable=too-many-arguments
34+
# pylint: disable=R0801
3435
self,
3536
base_test_case: BaseTestCase,
3637
treatment_value: float,

causal_testing/estimation/abstract_regression_estimator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def __init__(
3333
alpha: float = 0.05,
3434
query: str = "",
3535
):
36+
# pylint: disable=R0801
3637
super().__init__(
3738
base_test_case=base_test_case,
3839
treatment_value=treatment_value,

0 commit comments

Comments
 (0)