diff --git a/src/snowflake/snowpark/modin/plugin/docstrings/series_utils.py b/src/snowflake/snowpark/modin/plugin/docstrings/series_utils.py index c6048234071..d4b7af219c2 100644 --- a/src/snowflake/snowpark/modin/plugin/docstrings/series_utils.py +++ b/src/snowflake/snowpark/modin/plugin/docstrings/series_utils.py @@ -454,7 +454,7 @@ def ljust(): For Series.str.center: >>> ser = pd.Series(['dog', 'bird', 'mouse']) - >>> ser.str.center(8, fillchar='.') # doctest: +SKIP + >>> ser.str.center(8, fillchar='.') 0 ..dog... 1 ..bird.. 2 .mouse.. @@ -500,7 +500,7 @@ def rjust(): For Series.str.center: >>> ser = pd.Series(['dog', 'bird', 'mouse']) - >>> ser.str.center(8, fillchar='.') # doctest: +SKIP + >>> ser.str.center(8, fillchar='.') 0 ..dog... 1 ..bird.. 2 .mouse..