Skip to content

Commit b8e840b

Browse files
committed
CLN: Use ruff to improve code quality
1 parent 25f5175 commit b8e840b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

linearmodels/panel/results.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
from statsmodels.iolib.summary import SimpleTable, fmt_2cols, fmt_params
1515

1616
from linearmodels.iv.results import default_txt_fmt, stub_concat, table_concat
17-
from linearmodels.panel.model import _deferred_f
1817
from linearmodels.shared.base import _ModelComparison, _SummaryStr
1918
from linearmodels.shared.hypotheses import WaldTestStatistic, quadratic_form_test
2019
from linearmodels.shared.io import _str, add_star, pval_format
@@ -626,6 +625,8 @@ def f_statistic_robust(self) -> WaldTestStatistic:
626625
number of restrictions and inference is made using an :math:`F_{k,df}`
627626
distribution where df is the residual degree of freedom from the model.
628627
"""
628+
from linearmodels.panel.model import _deferred_f # noqa: PLC0415
629+
629630
return _deferred_f(
630631
self.params, self.cov, self._debiased, self.df_resid, self._f_info
631632
)

0 commit comments

Comments
 (0)