Skip to content

Commit f51dd18

Browse files
committed
Add space to end of string
1 parent 6f3e068 commit f51dd18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def _ensure_arraylike(values, func_name: str) -> ArrayLike:
232232
# Make an exception for the comps argument in isin.
233233
raise TypeError(
234234
f"{func_name} requires a Series, Index, "
235-
f"ExtensionArray, np.ndarray or NumpyExtensionArray"
235+
f"ExtensionArray, np.ndarray or NumpyExtensionArray "
236236
f"got {type(values).__name__}."
237237
)
238238

0 commit comments

Comments
 (0)