Skip to content

Commit 9aa4919

Browse files
committed
Fix unrelated lints from develop
1 parent 140bb59 commit 9aa4919

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts-dev/release.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,9 @@ def get_repo_and_check_clean_checkout(
821821
f"{path} is not a git repository (expecting a {name} repository)."
822822
)
823823
while repo.is_dirty():
824-
if not click.confirm(f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"):
824+
if not click.confirm(
825+
f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"
826+
):
825827
raise click.ClickException("Aborted.")
826828

827829
return repo

0 commit comments

Comments
 (0)