Skip to content

Commit

Permalink
Fix typo in exception raised when attempting to convert a string colu…
Browse files Browse the repository at this point in the history
…mn to cupy (#17800)

Closes #17799

Fix typo in exception raised when attempting to convert a string column to cupy

Authors:
  - David Gardner (https://github.com/dagardner-nv)
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Matthew Roeschke (https://github.com/mroeschke)
  - Bradley Dice (https://github.com/bdice)
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - Matthew Roeschke (https://github.com/mroeschke)
  - GALI PREM SAGAR (https://github.com/galipremsagar)

URL: #17800
  • Loading branch information
dagardner-nv authored Jan 28, 2025
1 parent 53174fd commit 39bcd16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/column/string.py
Original file line number Diff line number Diff line change
Expand Up @@ -5929,7 +5929,7 @@ def values(self) -> cupy.ndarray:
"""
Return a CuPy representation of the StringColumn.
"""
raise TypeError("String Arrays is not yet implemented in cudf")
raise TypeError("String arrays are not supported by cupy")

def to_pandas(
self,
Expand Down

0 comments on commit 39bcd16

Please sign in to comment.