File tree 6 files changed +17
-6
lines changed
6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 17
17
help = (
18
18
"Automate Python package and project setup tasks that are otherwise "
19
19
"performed manually."
20
- )
20
+ ),
21
+ add_completion = False ,
21
22
)
22
23
app .command (help = "Add an author to the project." )(
23
24
usethis ._interface .author .author ,
Original file line number Diff line number Diff line change 15
15
)
16
16
from usethis .errors import UsethisError
17
17
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
+ )
19
21
20
22
remove_opt = typer .Option (
21
23
False , "--remove" , help = "Remove the badge instead of adding it."
Original file line number Diff line number Diff line change 5
5
from usethis ._core .browse import browse_pypi
6
6
from usethis .errors import UsethisError
7
7
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
+ )
9
11
10
12
11
13
@app .command (help = "Visit the PyPI project page for a package." )
Original file line number Diff line number Diff line change 6
6
from usethis ._core .ci import use_ci_bitbucket
7
7
from usethis .errors import UsethisError
8
8
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
+ )
10
12
11
13
12
14
@app .command (help = "Use Bitbucket pipelines for CI." )
Original file line number Diff line number Diff line change 6
6
from usethis ._core .show import show_name , show_sonarqube_config
7
7
from usethis .errors import UsethisError
8
8
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
+ )
10
12
11
13
12
14
@app .command (help = "Show the name of the project" )
Original file line number Diff line number Diff line change 19
19
)
20
20
from usethis .errors import UsethisError
21
21
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
+ )
23
25
24
26
remove_opt = typer .Option (
25
27
False , "--remove" , help = "Remove the tool instead of adding it."
You can’t perform that action at this time.
0 commit comments