Skip to content

Commit

Permalink
Replace backtick w/parens
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Whitaker committed May 31, 2022
1 parent 1491bcb commit 071e20d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pre_commit/commands/run.py
Expand Up @@ -364,8 +364,9 @@ def run(
# Expose prepare_commit_message_source / commit_object_name
# as environment variables for the hooks
if args.prepare_commit_message_source:
environ['PRE_COMMIT_COMMIT_MSG_SOURCE'] \
= args.prepare_commit_message_source
environ['PRE_COMMIT_COMMIT_MSG_SOURCE'] = (
args.prepare_commit_message_source
)

if args.commit_object_name:
environ['PRE_COMMIT_COMMIT_OBJECT_NAME'] = args.commit_object_name
Expand Down

0 comments on commit 071e20d

Please sign in to comment.