We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e05658d commit 6b9eacbCopy full SHA for 6b9eacb
1 file changed
src/libvcs/cmd/hg.py
@@ -81,7 +81,7 @@ def run(
81
config: Optional[str] = None,
82
repository: Optional[str] = None,
83
quiet: Optional[bool] = None,
84
- help: Optional[bool] = None,
+ _help: Optional[bool] = None,
85
encoding: Optional[str] = None,
86
encoding_mode: Optional[str] = None,
87
verbose: Optional[bool] = None,
@@ -136,7 +136,7 @@ def run(
136
``--profile``
137
version : bool
138
``--version``
139
- help : bool
+ _help : bool
140
``-h / --help``
141
hidden : bool
142
``--hidden``
@@ -182,7 +182,7 @@ def run(
182
cli_args.append("--profile")
183
if version is True:
184
cli_args.append("--version")
185
- if help is True:
+ if _help is True:
186
cli_args.append("--help")
187
188
if self.progress_callback is not None:
0 commit comments