Skip to content

Commit a8c36ed

Browse files
authored
Fix lint (#7208)
Lint breakage added by a recent PR
1 parent 8e9214c commit a8c36ed

File tree

1 file changed

+3
-1
lines changed
  • aws/lambda/pytorch-auto-revert/pytorch_auto_revert

1 file changed

+3
-1
lines changed

aws/lambda/pytorch-auto-revert/pytorch_auto_revert/__main__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,9 @@ def main(*args, **kwargs) -> None:
242242
),
243243
repo_full_name=os.environ.get("REPO_FULL_NAME", DEFAULT_REPO_FULL_NAME),
244244
restart_action=(RestartAction.LOG if opts.dry_run else RestartAction.RUN),
245-
revert_action=(RevertAction.LOG if opts.dry_run else RevertAction.RUN_NOTIFY),
245+
revert_action=(
246+
RevertAction.LOG if opts.dry_run else RevertAction.RUN_NOTIFY
247+
),
246248
)
247249
elif opts.subcommand == "autorevert-checker":
248250
# New default behavior under the same subcommand

0 commit comments

Comments
 (0)