Remove superfluous docstring

This commit is contained in:
Matthias Bisping 2023-02-14 10:12:01 +01:00
parent fc0f19c5f1
commit 6a7cff5bf5

View File

@ -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)