Skip to content

Commit a5356fa

Browse files
committed
Run ruff format
1 parent 20d0085 commit a5356fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mrestimator/utility.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def _c_rk_greater_zero(data: "CoefficientResult", plim=0.1):
2727
returns True if the test passed (and the null hypothesis was rejected)
2828
"""
2929
from mrestimator.coefficients import CoefficientResult
30+
3031
if not isinstance(data, CoefficientResult):
3132
log.exception("_c_rk_greater_zero needs a CoefficientResult")
3233
raise TypeError
@@ -47,6 +48,7 @@ def _c_rk_smaller_one(data: "CoefficientResult", plim=0.1):
4748
returns True if the test passed (and the null hypothesis was rejected)
4849
"""
4950
from mrestimator.coefficients import CoefficientResult
51+
5052
if not isinstance(data, CoefficientResult):
5153
log.exception("_c_rk_smaller_one needs a CoefficientResult")
5254
raise TypeError

0 commit comments

Comments
 (0)