Skip to content

Commit 2b76d3c

Browse files
committed
pylint
1 parent 4abe735 commit 2b76d3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

causal_testing/specification/capabilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
This module contains the Capability and TreatmentSequence classes to implement
33
treatment sequences that operate over time.
44
"""
5-
from causal_testing.specification.variable import Variable
65
from typing import Any
6+
from causal_testing.specification.variable import Variable
77

88

99
class Capability:

causal_testing/testing/causal_test_adequacy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This module contains code to measure various aspects of causal test adequacy.
33
"""
44

5+
import logging
56
from itertools import combinations
67
from copy import deepcopy
78
import pandas as pd
@@ -12,7 +13,6 @@
1213
from causal_testing.specification.causal_dag import CausalDAG
1314
from causal_testing.testing.estimators import Estimator
1415
from causal_testing.testing.causal_test_case import CausalTestCase
15-
import logging
1616

1717
logger = logging.getLogger(__name__)
1818

0 commit comments

Comments
 (0)