Skip to content

Commit 1b57e2e

Browse files
Doesn't need to inherit ABC as no abstract methods
1 parent 9f56a70 commit 1b57e2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

causal_testing/specification/causal_specification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212

1313
@dataclass
14-
class CausalSpecification(ABC):
14+
class CausalSpecification:
1515
"""
16-
Abstract Class for the Causal Specification (combination of Scenario and Causal Dag)
16+
Data class storing the Causal Specification (combination of Scenario and Causal Dag)
1717
"""
1818

1919
scenario: Scenario

0 commit comments

Comments
 (0)