Skip to content

Commit 4bb622d

Browse files
committed
fix
1 parent 257a1ad commit 4bb622d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

doc/source/whatsnew/v3.0.0.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,6 @@ ExtensionArray
14721472
- Bug in constructing pandas data structures when passing into ``dtype`` a string of the type followed by ``[pyarrow]`` while PyArrow is not installed would raise ``NameError`` rather than ``ImportError`` (:issue:`57928`)
14731473
- Bug in various :class:`DataFrame` reductions for pyarrow temporal dtypes returning incorrect dtype when result was null (:issue:`59234`)
14741474
- Fixed flex arithmetic with :class:`.ExtensionArray` operands raising when ``fill_value`` was passed. (:issue:`62467`)
1475-
- Fix assumption that :class:`numpy.void` dtypes are always structured (:issue:`#54810`)
14761475

14771476
Styler
14781477
^^^^^^

doc/source/whatsnew/v3.0.1.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Bug fixes
1515
^^^^^^^^^
1616
- Fixed a bug in the :class:`DataFrame` constructor when passed a :class:`Series` or
1717
:class:`Index` correctly handling Copy-on-Write (:issue:`63899`)
18+
- Fix assumption that :class:`numpy.void` dtypes are always structured (:issue:`54810`)
1819

1920
.. ---------------------------------------------------------------------------
2021
.. _whatsnew_301.contributors:

pandas/tests/extension/uuid/test_uuid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _from_sequence(
6868
dtype = UuidDtype()
6969
return cls(scalars, copy=copy)
7070

71-
def __getitem__(self, index: ScalarIndexer) -> UUID:
71+
def __getitem__(self, index: ScalarIndexer) -> UUID: # type: ignore[override]
7272
assert isinstance(index, int | np.integer)
7373
return UUID(bytes=self._data[index].tobytes())
7474

0 commit comments

Comments
 (0)