From 5a6a895db5a9e23942b27ef9980f2683a2602c67 Mon Sep 17 00:00:00 2001 From: jschendel Date: Thu, 2 Aug 2018 17:21:41 -0600 Subject: [PATCH] CI: Fix Travis failures due to lint.sh on pandas/core/strings.py --- 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