Skip to content

Commit 246ffec

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5e92681 commit 246ffec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/reshape/reshape.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,9 @@ def _make_selectors(self) -> None:
235235
self.mask = mask
236236
if self.sort:
237237
import sys
238+
238239
# GH 63314: avoid searchsorted bug with py3.14 + numpy < 2.0
239-
numpy_major = int(np.__version__.split('.')[0])
240+
numpy_major = int(np.__version__.split(".")[0])
240241
has_searchsorted_bug = sys.version_info >= (3, 14) and numpy_major < 2
241242

242243
if has_searchsorted_bug:

0 commit comments

Comments
 (0)