From 6df243bb2d7f8cd1e8e10446cdbe3c0570ff24a1 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Wed, 16 Feb 2022 12:29:24 -0500 Subject: [PATCH] Fix documentation issues The docstring for the `iloc` function has two `Examples` sections, which throws an error during doc builds. This PR removes the second extraneous section. --- python/cudf/cudf/core/indexed_frame.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/cudf/cudf/core/indexed_frame.py b/python/cudf/cudf/core/indexed_frame.py index e1ff3984948..bc7337d0a42 100644 --- a/python/cudf/cudf/core/indexed_frame.py +++ b/python/cudf/cudf/core/indexed_frame.py @@ -258,8 +258,6 @@ def iloc(self): Selecting rows and column by position. - Examples - -------- >>> df = cudf.DataFrame({'a': range(20), ... 'b': range(20), ... 'c': range(20)})