Skip to content

Commit bfe9115

Browse files
committed
fix linting errors
1 parent fd9dd27 commit bfe9115

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

db_dtypes/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ def _check_python_version():
367367
stacklevel=2, # Point warning to the caller of __init__
368368
)
369369

370+
370371
_check_python_version()
371372

372373
__all__ = _determine_all(JSONArray, JSONDtype)

tests/compliance/date/test_date_compliance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,4 @@ class TestSetitem(base.BaseSetitemTests):
122122
# NDArrayBacked2DTests suite added in https://github.com/pandas-dev/pandas/pull/44974
123123
# v1.4.0rc0
124124
class Test2DCompat(base.NDArrayBacked2DTests):
125-
pass
125+
pass

tests/compliance/time/test_time_compliance_1_5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"""
2222

2323
from pandas.tests.extension import base
24-
import pytest
24+
2525

2626
# NDArrayBacked2DTests suite added in https://github.com/pandas-dev/pandas/pull/44974
2727
class Test2DCompat(base.NDArrayBacked2DTests):

tests/unit/test__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,3 @@ def test_determine_all_excludes_json_when_unavailable(mock_array, mock_dtype):
142142
assert "JSONDtype" not in result
143143
assert "JSONArray" not in result
144144
assert "JSONArrowType" not in result
145-

0 commit comments

Comments
 (0)