Skip to content

Commit 16df416

Browse files
black
1 parent f8346ac commit 16df416

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from dataclasses import dataclass
22
from causal_testing.specification.variable import Variable
33

4+
45
@dataclass
56
class BaseCausalTest:
67
"""
78
A base causal test case represents the relationship of an edge on a causal DAG.
89
"""
10+
911
treatment_variable: Variable
1012
outcome_variable: Variable
11-
effect: str = 'total'
12-
13+
effect: str = "total"

causal_testing/testing/causal_test_case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from causal_testing.specification.variable import Variable
55
from causal_testing.testing.causal_test_outcome import CausalTestOutcome
66
from causal_testing.testing.base_causal_test import BaseCausalTest
7+
78
logger = logging.getLogger(__name__)
89

910

0 commit comments

Comments
 (0)