8000 Update typing and docs · iskode/dataframe-api@58fee89 · GitHub
[go: up one dir, main page]

Skip to content

Commit 58fee89

Browse files
committed
Update typing and docs
1 parent 0d04af3 commit 58fee89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

protocol/pandas_implementation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ def convert_categorical_column(col : ColumnObject) -> pd.Series:
162162
return series
163163

164164

165-
def convert_string_column(col : ColumnObject) -> pd.Series:
165+
def convert_string_column(col : ColumnObject) -> np.ndarray:
166166
"""
167-
Convert a string column to a Series instance.
167+
Convert a string column to a NumPy array.
168168
"""
169169
# Retrieve the data buffer containing the UTF-8 code units
170170
dbuffer, bdtype = col.get_data_buffer()

0 commit comments

Comments
 (0)
0