Skip to content

Commit 02159f7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ac50046 commit 02159f7

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

Tests/test_pyarrow.py

+3-15
Original file line numberDiff line numberDiff line change
@@ -151,21 +151,9 @@ def test_lifetime2() -> None:
151151
assert isinstance(px[0, 0], int)
152152

153153

154-
UINT_ARR = (
155-
fl_uint8_4_type,
156-
[1,2,3,4],
157-
1
158-
)
159-
UINT = (
160-
pyarrow.uint8(),
161-
3,
162-
4
163-
)
164-
INT32 = (
165-
pyarrow.uint32(),
166-
0xabcdef45,
167-
1
168-
)
154+
UINT_ARR = (fl_uint8_4_type, [1, 2, 3, 4], 1)
155+
UINT = (pyarrow.uint8(), 3, 4)
156+
INT32 = (pyarrow.uint32(), 0xABCDEF45, 1)
169157

170158

171159
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)