From 35dd15ba150175e8522e2d443ee4118b0d5c57ce Mon Sep 17 00:00:00 2001 From: Jeremy Schendel Date: Thu, 2 Aug 2018 19:58:32 -0600 Subject: [PATCH] CI: Fix Travis failures due to lint.sh on pandas/core/strings.py (#22184) --- pandas/core/strings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/core/strings.py b/pandas/core/strings.py index b5b44a361a98d..39ecf7f49bc2e 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -293,7 +293,8 @@ def str_contains(arr, pat, case=True, flags=0, na=np.nan, regex=True): See Also -------- match : analogous, but stricter, relying on re.match instead of re.search - Series.str.startswith : Test if the start of each string element matches a pattern. + Series.str.startswith : Test if the start of each string element matches a + pattern. Series.str.endswith : Same as startswith, but tests the end of string. Examples