Skip to content

Commit 0086269

Browse files
committed
CLN (feedback): pass to_numpy karg to extract_array
1 parent f9ebb39 commit 0086269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6371,8 +6371,8 @@ def combine_first(self, other: DataFrame) -> DataFrame:
63716371
def combiner(x, y):
63726372
mask = extract_array(isna(x))
63736373

6374-
x_values = extract_array(x)
6375-
y_values = extract_array(y)
6374+
x_values = extract_array(x, to_numpy=True)
6375+
y_values = extract_array(y, to_numpy=True)
63766376

63776377
# If the column y in other DataFrame is not in first DataFrame,
63786378
# just return y_values.

0 commit comments

Comments
 (0)