Skip to content

Commit b5fd816

Browse files
committed
CLN: juggles doc url to fit within 80 char per line
1 parent db24ba5 commit b5fd816

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/generic.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3359,7 +3359,8 @@ def __setattr__(self, name, value):
33593359
if (self.ndim > 1) and (is_list_like(value)):
33603360
warnings.warn("Pandas doesn't allow Series to be assigned "
33613361
"into nonexistent columns - see "
3362-
"https://pandas.pydata.org/pandas-docs/stable""/indexing.html#attribute-access")
3362+
"https://pandas.pydata.org/pandas-docs/"
3363+
"stable/indexing.html#attribute-access")
33633364
object.__setattr__(self, name, value)
33643365

33653366
# ----------------------------------------------------------------------

0 commit comments

Comments
 (0)