Improve visibility help string

This commit is contained in:
Ivan Habunek 2022-12-28 09:48:44 +01:00
parent aa75cacbff
commit a3fa7e1e3a
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 12 additions and 11 deletions

View File

@ -13,6 +13,7 @@ from toot.exceptions import ApiError, ConsoleError
from toot.output import print_out, print_err
VISIBILITY_CHOICES = ['public', 'unlisted', 'private', 'direct']
VISIBILITY_CHOICES_STR = ", ".join(f"'{v}'" for v in VISIBILITY_CHOICES)
def get_default_visibility():
@ -152,6 +153,15 @@ status_id_arg = (["status_id"], {
"type": str,
})
visibility_arg = (["-v", "--visibility"], {
"type": visibility,
"default": get_default_visibility(),
"help": f"Post visibility. One of: {VISIBILITY_CHOICES_STR}. Defaults to "
f"'{get_default_visibility()}' which can be overridden by setting "
"the TOOT_POST_VISIBILITY environment variable",
})
# Arguments for selecting a timeline (see `toot.commands.get_timeline_generator`)
common_timeline_args = [
(["-p", "--public"], {
@ -350,11 +360,7 @@ POST_COMMANDS = [
"help": "plain-text description of the media for accessibility "
"purposes, one per attached media"
}),
(["-v", "--visibility"], {
"type": visibility,
"default": get_default_visibility(),
"help": 'post visibility, one of: %s' % ", ".join(VISIBILITY_CHOICES),
}),
visibility_arg,
(["-s", "--sensitive"], {
"action": 'store_true',
"default": False,
@ -438,12 +444,7 @@ STATUS_COMMANDS = [
Command(
name="reblog",
description="Reblog a status",
arguments=[status_id_arg,
(["-v", "--visibility"], {
"type": visibility,
"default": get_default_visibility(),
"help": 'boost visibility, one of: %s' % ", ".join(VISIBILITY_CHOICES),
})],
arguments=[status_id_arg, visibility_arg],
require_auth=True,
),
Command(