Skip to content

Commit c6173b5

Browse files
committed
text fix
1 parent b9715c9 commit c6173b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/formats/style.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,8 +850,8 @@ def _apply(
850850
if not isinstance(result, pd.DataFrame):
851851
if not isinstance(result, np.ndarray):
852852
raise TypeError(
853-
f"Function {repr(func)} must return a DataFrame or ndarray when"
854-
f" passed to `Styler.apply` with axis=None"
853+
f"Function {repr(func)} must return a DataFrame or ndarray "
854+
f"when passed to `Styler.apply` with axis=None"
855855
)
856856
if not (data.shape == result.shape):
857857
raise ValueError(

0 commit comments

Comments
 (0)