From fcb948cf39dd0e83387e761fa9a42301e1f78db8 Mon Sep 17 00:00:00 2001 From: Vitaly Bogomolov Date: Mon, 28 Oct 2024 10:05:53 +0400 Subject: [PATCH] fix --- markdown_pdf/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/markdown_pdf/__init__.py b/markdown_pdf/__init__.py index e669742..b2d0944 100644 --- a/markdown_pdf/__init__.py +++ b/markdown_pdf/__init__.py @@ -7,10 +7,7 @@ class Section: """Markdown section.""" - def __init__( - self, text, toc=True, root=".", paper_size="A4", - borders=(36, 36, -36, -36) # pylint: disable=too-many-arguments - ): + def __init__(self, text, toc=True, root=".", paper_size="A4", borders=(36, 36, -36, -36)): """Create md section with given properties.""" self.text = text self.toc = toc