From 024fb8d4afca03aea2c743a90812350ade0b13dd Mon Sep 17 00:00:00 2001 From: William Andrea <22385371+wjandrea@users.noreply.github.com> Date: Sat, 18 Oct 2025 10:07:42 -0300 Subject: [PATCH] DOC: wrap long line for readability --- doc/source/user_guide/10min.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/user_guide/10min.rst b/doc/source/user_guide/10min.rst index 8beaa73090673..438306f01772a 100644 --- a/doc/source/user_guide/10min.rst +++ b/doc/source/user_guide/10min.rst @@ -318,7 +318,9 @@ Setting a new column automatically aligns the data by the indexes: .. ipython:: python - s1 = pd.Series([1, 2, 3, 4, 5, 6], index=pd.date_range("20130102", periods=6)) + s1 = pd.Series( + [1, 2, 3, 4, 5, 6], + index=pd.date_range("20130102", periods=6)) s1 df["F"] = s1