Skip to content

Commit 86e4c9c

Browse files
Fix flake8 F821 false positive for forward reference in base.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f8d31a3 commit 86e4c9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/statspai/core/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self):
1818
self._results = None
1919

2020
@abstractmethod
21-
def fit(self, **kwargs) -> 'EconometricResults':
21+
def fit(self, **kwargs) -> 'EconometricResults': # noqa: F821
2222
"""
2323
Fit the econometric model
2424

0 commit comments

Comments
 (0)