From 7df9202ad64ddfa0fbbdbfdbcdb7ae41158a397f Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com> Date: Mon, 2 Dec 2019 02:55:05 +0200 Subject: [PATCH] Added space at the end of the sentence (#29949) --- pandas/core/dtypes/dtypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/dtypes/dtypes.py b/pandas/core/dtypes/dtypes.py index 94147864242452..89e80b3b42017a 100644 --- a/pandas/core/dtypes/dtypes.py +++ b/pandas/core/dtypes/dtypes.py @@ -574,8 +574,8 @@ def update_dtype( "Constructing a CategoricalDtype without specifying " "`ordered` will default to `ordered=False` in a future " "version, which will cause the resulting categorical's " - "`ordered` attribute to change to False; `ordered=True`" - " must be explicitly passed in order to be retained" + "`ordered` attribute to change to False; `ordered=True` " + "must be explicitly passed in order to be retained" ) warnings.warn(msg, FutureWarning, stacklevel=3)