Skip to content

Commit 1084a60

Browse files
committed
breaking line for 88 instead of 89 characters
1 parent 02a56a6 commit 1084a60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/generic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7490,7 +7490,8 @@ def replace(
74907490
if is_dict_like(value): # {'A' : NA} -> {'A' : 0}
74917491
if isinstance(self, ABCSeries):
74927492
raise ValueError(
7493-
"to_replace and value cannot be dict-like for Series.replace"
7493+
"to_replace and value cannot be dict-like for "
7494+
"Series.replace"
74947495
)
74957496
# Note: Checking below for `in foo.keys()` instead of
74967497
# `in foo` is needed for when we have a Series and not dict

0 commit comments

Comments
 (0)