Skip to content

Commit a99d5ec

Browse files
committed
Expanded --no-wizard helptip ↞ [auto-sync from https://github.com/adamlui/python-utils/tree/main/translate-messages]
1 parent e225a06 commit a99d5ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

translate-messages/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "translate-messages"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "Translate en/messages.json to other locales. Type translate-messages --help to view options."
55
authors = [{name = "Adam Lui", email = "adam@kudoai.com"}]
66
include = ["LICENSE.md"]

translate-messages/src/translate_messages/lib/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def cli(caller_file):
2020
argp.add_argument('--locales-dir', type=str, help='Name of folder containing locales')
2121
argp.add_argument('--provider', type=str, help='Name of provider to use for translation')
2222
argp.add_argument('--init', action='store_true', help=f'Create {cli.name}.config.json file to store defaults')
23-
argp.add_argument('--no-wizard', action='store_true', default=None, help='Skip start-up prompts')
23+
argp.add_argument('--no-wizard', action='store_true', default=None, help='Skip interactive prompts during start-up')
2424
cli.config.__dict__.update({ key:val for key,val in vars(argp.parse_args()).items() if val is not None })
2525

2626
# Init cli.config vals

0 commit comments

Comments
 (0)