Skip to content

Commit b84b76c

Browse files
committed
Blackened causal_testing again
1 parent 06476bd commit b84b76c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

causal_testing/json_front/json_class.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,7 @@ def _execute_test_case(self, causal_test_case: CausalTestCase, estimator: Estima
176176

177177
result_string = str()
178178
if causal_test_result.ci_low() and causal_test_result.ci_high():
179-
result_string = (
180-
f"{causal_test_result.ci_low()} < {causal_test_result.test_value.value} < {causal_test_result.ci_high()}"
181-
)
179+
result_string = f"{causal_test_result.ci_low()} < {causal_test_result.test_value.value} < {causal_test_result.ci_high()}"
182180
else:
183181
result_string = causal_test_result.test_value.value
184182
if f_flag:

0 commit comments

Comments
 (0)