Skip to content

Commit 4bb2bfe

Browse files
author
Brett
committed
Add periods to help texts for all run commands.
1 parent e0f1a34 commit 4bb2bfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pre_commit/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,20 +91,20 @@ def main(argv=None):
9191
)
9292
run_parser.add_argument(
9393
'--origin', '-o',
94-
help='The origin branch\'s commit_id when using `git push`',
94+
help='The origin branch\'s commit_id when using `git push`.',
9595
)
9696
run_parser.add_argument(
9797
'--source', '-s',
98-
help='The remote branch\'s commit_id when using `git push`',
98+
help='The remote branch\'s commit_id when using `git push`.',
9999
)
100100
run_parser.add_argument(
101101
'--allow-unstaged-config', default=False, action='store_true',
102102
help='Allow an unstaged config to be present. Note that this will '
103-
'be stashed before parsing unless --no-stash is specified'
103+
'be stashed before parsing unless --no-stash is specified.'
104104
)
105105
run_parser.add_argument(
106106
'--hook-stage', choices=('commit', 'push'), default='commit',
107-
help='The stage during which the hook is fired e.g. commit or push',
107+
help='The stage during which the hook is fired e.g. commit or push.',
108108
)
109109
run_mutex_group = run_parser.add_mutually_exclusive_group(required=False)
110110
run_mutex_group.add_argument(

0 commit comments

Comments
 (0)