Skip to content

Commit 7793c0d

Browse files
authored
doc: clarify verbose option help text (#908)
1 parent 02d6313 commit 7793c0d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/_pytask/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def build( # noqa: PLR0913
206206
trace : bool, default=False
207207
Enter debugger in the beginning of each task.
208208
verbose : int, default=1
209-
Make pytask verbose (>= 0) or quiet (= 0).
209+
Set pytask verbosity: 0 = quiet, 1 = default, 2 = verbose.
210210
**kwargs : Any
211211
Additional configuration forwarded to pytask's configuration pipeline.
212212

src/_pytask/parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
["-v", "--verbose"],
7171
type=click.IntRange(0, 2),
7272
default=1,
73-
help="Make pytask verbose (>= 0) or quiet (= 0).",
73+
help="Set pytask verbosity: 0 = quiet, 1 = default, 2 = verbose.",
7474
)
7575
"""click.Option: An option to control pytask's verbosity."""
7676

0 commit comments

Comments
 (0)