Skip to content

Commit 3c8bd5b

Browse files
committed
Shortened comment
1 parent 0461285 commit 3c8bd5b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

remove-json-keys/src/remove_json_keys/lib/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def load(cli):
2626
# Parse CLI args
2727
argp = argparse.ArgumentParser(
2828
description="Simply remove JSON keys via CLI command",
29-
add_help=False # disable default --help arg to re-create last
29+
add_help=False # disable default --help to re-create last
3030
)
3131
cli.config=sns()
3232
for attr_name in vars(controls):

remove-json-keys/utils/bump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Parse args
1010
argp = argparse.ArgumentParser(
1111
description='Bump versions in pyproject.toml + README.md',
12-
add_help=False # disable default --help arg to re-create last
12+
add_help=False # disable default --help to re-create last
1313
)
1414
argp.add_argument('-M', '--major', action='store_true', help='Bump the major (\033[1mx\033[0m.y.z) version')
1515
argp.add_argument('-m', '--minor', action='store_true', help='Bump the minor (x.\033[1my\033[0m.z) version')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def load(cli, caller_file):
6262
# Parse CLI args
6363
argp = argparse.ArgumentParser(
6464
description="Translate en/messages.json (in chrome.i18n format) to other locales",
65-
add_help=False # disable default --help arg to re-create last
65+
add_help=False # disable default --help to re-create last
6666
)
6767
for attr_name in vars(controls):
6868
kwargs = getattr(controls, attr_name).__dict__.copy()

translate-messages/utils/bump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Parse args
1010
argp = argparse.ArgumentParser(
1111
description='Bump versions in pyproject.toml + README.md',
12-
add_help=False # disable default --help arg to re-create last
12+
add_help=False # disable default --help to re-create last
1313
)
1414
argp.add_argument('-M', '--major', action='store_true', help='Bump the major (\033[1mx\033[0m.y.z) version')
1515
argp.add_argument('-m', '--minor', action='store_true', help='Bump the minor (x.\033[1my\033[0m.z) version')

0 commit comments

Comments
 (0)