File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 help = (
1818 "Automate Python package and project setup tasks that are otherwise "
1919 "performed manually."
20- )
20+ ),
21+ add_completion = False ,
2122)
2223app .command (help = "Add an author to the project." )(
2324 usethis ._interface .author .author ,
Original file line number Diff line number Diff line change 1515)
1616from usethis .errors import UsethisError
1717
18- app = typer .Typer (help = "Add badges to the top of the README.md file." )
18+ app = typer .Typer (
19+ help = "Add badges to the top of the README.md file." , add_completion = False
20+ )
1921
2022remove_opt = typer .Option (
2123 False , "--remove" , help = "Remove the badge instead of adding it."
Original file line number Diff line number Diff line change 55from usethis ._core .browse import browse_pypi
66from usethis .errors import UsethisError
77
8- app = typer .Typer (help = "Visit important project-related web pages." )
8+ app = typer .Typer (
9+ help = "Visit important project-related web pages." , add_completion = False
10+ )
911
1012
1113@app .command (help = "Visit the PyPI project page for a package." )
Original file line number Diff line number Diff line change 66from usethis ._core .ci import use_ci_bitbucket
77from usethis .errors import UsethisError
88
9- app = typer .Typer (help = "Add config for Continuous Integration (CI) pipelines." )
9+ app = typer .Typer (
10+ help = "Add config for Continuous Integration (CI) pipelines." , add_completion = False
11+ )
1012
1113
1214@app .command (help = "Use Bitbucket pipelines for CI." )
Original file line number Diff line number Diff line change 66from usethis ._core .show import show_name , show_sonarqube_config
77from usethis .errors import UsethisError
88
9- app = typer .Typer (help = "Show information about the current project." )
9+ app = typer .Typer (
10+ help = "Show information about the current project." , add_completion = False
11+ )
1012
1113
1214@app .command (help = "Show the name of the project" )
Original file line number Diff line number Diff line change 1919)
2020from usethis .errors import UsethisError
2121
22- app = typer .Typer (help = "Add and configure development tools, e.g. linters." )
22+ app = typer .Typer (
23+ help = "Add and configure development tools, e.g. linters." , add_completion = False
24+ )
2325
2426remove_opt = typer .Option (
2527 False , "--remove" , help = "Remove the tool instead of adding it."
You can’t perform that action at this time.
0 commit comments