Replace string literals with constants

This commit is contained in:
Iulian Onofrei 2018-01-09 17:51:41 +02:00
parent a5f3cefb64
commit 8407b92b18
4 changed files with 9 additions and 8 deletions

View file

@ -42,7 +42,7 @@ def _add_color_option(parser):
def _add_config_option(parser):
parser.add_argument(
'-c', '--config', default='.pre-commit-config.yaml',
'-c', '--config', default=C.CONFIG_FILE,
help='Path to alternate config file',
)