Skip to content

Commit 5ad4c9d

Browse files
committed
Fix build errors
1 parent b0badd6 commit 5ad4c9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def main(args: dict) -> None:
3535
build_python.build_distribution(exit_on_error=True)
3636

3737
if args.get(build_utils.FLAG_CHECK):
38-
build_python.code_checks(exit_on_error=True)
38+
build_python.code_checks(safety=False, exit_on_error=True)
3939

4040
if args.get(build_utils.FLAG_TEST):
4141
# Remove coverage files

src/lazydocs/_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@app.command()
1313
def generate(
14-
paths: List[str] = typer.Argument(
14+
paths: List[str] = typer.Argument( # type: ignore
1515
..., help="Selected paths or imports for markdown generation."
1616
),
1717
output_path: str = typer.Option(

0 commit comments

Comments
 (0)