Skip to content

Commit 53e8b4a

Browse files
committed
Fix wrong import
1 parent 3349e20 commit 53e8b4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lazydocs/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import typer
66

7-
import lazydocs.generation
7+
from lazydocs import generate_docs
88

99
app = typer.Typer()
1010

@@ -45,7 +45,7 @@ def generate(
4545
) -> None:
4646
"""Generates markdown documentation for your Python project based on Google-style docstrings."""
4747

48-
lazydocs.generator.generate_docs(
48+
generate_docs(
4949
paths=paths,
5050
output_path=output_path,
5151
src_base_url=src_base_url,

0 commit comments

Comments
 (0)