From 6a7cff5bf56aef8912b7c00881ba785c3ac179e8 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Tue, 14 Feb 2023 10:12:01 +0100 Subject: [PATCH] Remove superfluous docstring --- test/fixtures/page_generation/page.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/fixtures/page_generation/page.py b/test/fixtures/page_generation/page.py index 41ca9a8..88ec786 100644 --- a/test/fixtures/page_generation/page.py +++ b/test/fixtures/page_generation/page.py @@ -195,7 +195,6 @@ def content_boxes(boxes): def page_with_opaque_content( blank_page, tinted_blank_page, prepared_texture, content_boxes ) -> Tuple[np.ndarray, Iterable[Rectangle]]: - """Creates a page with content""" page = paste_contents(prepared_texture, content_boxes) return page, content_boxes @@ -205,7 +204,6 @@ def page_with_opaque_content( def page_with_translucent_content( blank_page, tinted_blank_page, prepared_texture, content_boxes ) -> Tuple[np.ndarray, List[Rectangle]]: - """Creates a page with content""" page_content = paste_contents(blank_page, content_boxes) page = blend_by_multiply(page_content, prepared_texture)