We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0badd6 commit 5ad4c9dCopy full SHA for 5ad4c9d
build.py
@@ -35,7 +35,7 @@ def main(args: dict) -> None:
35
build_python.build_distribution(exit_on_error=True)
36
37
if args.get(build_utils.FLAG_CHECK):
38
- build_python.code_checks(exit_on_error=True)
+ build_python.code_checks(safety=False, exit_on_error=True)
39
40
if args.get(build_utils.FLAG_TEST):
41
# Remove coverage files
src/lazydocs/_cli.py
@@ -11,7 +11,7 @@
11
12
@app.command()
13
def generate(
14
- paths: List[str] = typer.Argument(
+ paths: List[str] = typer.Argument( # type: ignore
15
..., help="Selected paths or imports for markdown generation."
16
),
17
output_path: str = typer.Option(
0 commit comments