Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/_pytask/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def build( # noqa: PLR0913
trace : bool, default=False
Enter debugger in the beginning of each task.
verbose : int, default=1
Make pytask verbose (>= 0) or quiet (= 0).
Set pytask verbosity: 0 = quiet, 1 = default, 2 = verbose.
**kwargs : Any
Additional configuration forwarded to pytask's configuration pipeline.

Expand Down
2 changes: 1 addition & 1 deletion src/_pytask/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
["-v", "--verbose"],
type=click.IntRange(0, 2),
default=1,
help="Make pytask verbose (>= 0) or quiet (= 0).",
help="Set pytask verbosity: 0 = quiet, 1 = default, 2 = verbose.",
)
"""click.Option: An option to control pytask's verbosity."""

Expand Down
Loading