Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 14, 2023
1 parent d494d60 commit c01a10f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions mknodes/pages/mkmodulepage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def __init__(
*,
klasses: list[type] | set[type] | None = None,
title: str | None = None,
path: str | os.PathLike | None = None,
template: str | os.PathLike | None = None,
**kwargs: Any,
):
Expand All @@ -34,7 +33,6 @@ def __init__(
module: ModuleType or path to model to show info for.
klasses: klasses to use
title: Optional title override. Defaults to module name
path: Filename/path for the Module page. defaults to [modulename].md
template: Name of the template to load
kwargs: further keyword arguments passed to parent
"""
Expand All @@ -49,7 +47,6 @@ def __init__(
template=tpl_name,
template_parent=DEFAULT_TPL if tpl_name != DEFAULT_TPL else None,
title=title or self.parts[-1],
path=path or f"{self.parts[-1]}.md",
**kwargs,
)

Expand Down

0 comments on commit c01a10f

Please sign in to comment.