File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ def _c_rk_greater_zero(data: "CoefficientResult", plim=0.1):
27
27
returns True if the test passed (and the null hypothesis was rejected)
28
28
"""
29
29
from mrestimator .coefficients import CoefficientResult
30
+
30
31
if not isinstance (data , CoefficientResult ):
31
32
log .exception ("_c_rk_greater_zero needs a CoefficientResult" )
32
33
raise TypeError
@@ -47,6 +48,7 @@ def _c_rk_smaller_one(data: "CoefficientResult", plim=0.1):
47
48
returns True if the test passed (and the null hypothesis was rejected)
48
49
"""
49
50
from mrestimator .coefficients import CoefficientResult
51
+
50
52
if not isinstance (data , CoefficientResult ):
51
53
log .exception ("_c_rk_smaller_one needs a CoefficientResult" )
52
54
raise TypeError
You can’t perform that action at this time.
0 commit comments