Fixed code style

This commit is contained in:
Michael Adkins 2019-07-09 13:48:06 -05:00
parent c148845a98
commit 02d95c033c
2 changed files with 12 additions and 3 deletions

View file

@ -285,7 +285,11 @@ def run(config_file, store, args, environ=os.environ):
]
if args.hook and not hooks:
output.write_line('No hook with id `{}` in stage `{}`'.format(args.hook, args.hook_stage))
output.write_line(
'No hook with id `{}` in stage `{}`'.format(
args.hook, args.hook_stage,
),
)
return 1
install_hook_envs(hooks, store)