Skip to content

Commit 9ca0580

Browse files
committed
CLN: juggles doc url to fit within 80 char per line
1 parent b4f9b10 commit 9ca0580

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
@@ -3277,7 +3277,8 @@ def __setattr__(self, name, value):
32773277
if (self.ndim > 1) and (is_list_like(value)):
32783278
warnings.warn("Pandas doesn't allow Series to be assigned "
32793279
"into nonexistent columns - see "
3280-
"https://pandas.pydata.org/pandas-docs/stable""/indexing.html#attribute-access")
3280+
"https://pandas.pydata.org/pandas-docs/"
3281+
"stable/indexing.html#attribute-access")
32813282
object.__setattr__(self, name, value)
32823283

32833284
# ----------------------------------------------------------------------

0 commit comments

Comments
 (0)