Skip to content

Commit 9e2afda

Browse files
committed
Fix formatting of compatibility test to pass ruff check
1 parent db64d79 commit 9e2afda

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_statsmodels_scipy_compatibility.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,14 @@ def check_versions():
3232
def test_statsmodels_import():
3333
"""Ensure statsmodels can be imported and has expected version."""
3434
import statsmodels
35+
3536
assert statsmodels.__version__ >= "0.14.5"
3637

3738

3839
def test_statsmodels_api_import():
3940
"""Ensure statsmodels.api can be imported without triggering ImportError."""
4041
import statsmodels.api as sm
42+
4143
assert hasattr(sm, "OLS")
4244
assert len(dir(sm)) > 10 # Sanity check
4345

0 commit comments

Comments
 (0)