File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -266,15 +266,17 @@ class Options:
266
266
None ,
267
267
"--safe-staking/--no-safe-staking" ,
268
268
"--safe/--unsafe" ,
269
- help = "Enable or disable safe staking mode (default: enabled)." ,
269
+ show_default = False ,
270
+ help = "Enable or disable safe staking mode [dim](default: enabled)[/dim]." ,
270
271
)
271
272
allow_partial_stake = typer .Option (
272
273
None ,
273
274
"--allow-partial-stake/--no-allow-partial-stake" ,
274
275
"--partial/--no-partial" ,
275
276
"--allow/--not-allow" ,
276
277
"--allow-partial/--not-partial" ,
277
- help = "Enable or disable partial stake mode (default: disabled)." ,
278
+ show_default = False ,
279
+ help = "Enable or disable partial stake mode [dim](default: disabled)[/dim]." ,
278
280
)
279
281
dashboard_path = typer .Option (
280
282
None ,
@@ -1184,12 +1186,14 @@ def set_config(
1184
1186
"--safe-staking/--no-safe-staking" ,
1185
1187
"--safe/--unsafe" ,
1186
1188
help = "Enable or disable safe staking mode." ,
1189
+ show_default = False ,
1187
1190
),
1188
1191
allow_partial_stake : Optional [bool ] = typer .Option (
1189
1192
None ,
1190
1193
"--allow-partial-stake/--no-allow-partial-stake" ,
1191
1194
"--partial/--no-partial" ,
1192
1195
"--allow/--not-allow" ,
1196
+ show_default = False ,
1193
1197
),
1194
1198
dashboard_path : Optional [str ] = Options .dashboard_path ,
1195
1199
):
You can’t perform that action at this time.
0 commit comments