Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vb64 committed Oct 28, 2024
1 parent e03eebf commit fcb948c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions markdown_pdf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fcb948c

Please sign in to comment.