Skip to content

Commit eb46686

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

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
@@ -3240,7 +3240,8 @@ def __setattr__(self, name, value):
32403240
if (self.ndim > 1) and (is_list_like(value)):
32413241
warnings.warn("Pandas doesn't allow Series to be assigned "
32423242
"into nonexistent columns - see "
3243-
"https://pandas.pydata.org/pandas-docs/stable""/indexing.html#attribute-access")
3243+
"https://pandas.pydata.org/pandas-docs/"
3244+
"stable/indexing.html#attribute-access")
32443245
object.__setattr__(self, name, value)
32453246

32463247
# ----------------------------------------------------------------------

0 commit comments

Comments
 (0)