Skip to content

Commit 1be3b48

Browse files
committed
Fix typo
1 parent 194285f commit 1be3b48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/exchange/buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __dlpack__(self):
5858
"""
5959
if _NUMPY_HAS_DLPACK:
6060
# error: "ndarray[Any, Any]" has no attribute "__dlpack__"
61-
return self._x.__dlpack__() # type: ignore[arg-defined]
61+
return self._x.__dlpack__() # type: ignore[attr-defined]
6262
raise NotImplementedError("__dlpack__")
6363

6464
def __dlpack_device__(self) -> Tuple[DlpackDeviceType, Optional[int]]:

0 commit comments

Comments
 (0)