1
0

Fix lints on develop (#19092)

Snuck in with
ff242faad0
This commit is contained in:
Eric Eastwood
2025-10-22 10:39:04 -05:00
committed by GitHub
parent 3b59ac3b69
commit cba3a814c6
2 changed files with 4 additions and 1 deletions

View File

@@ -821,7 +821,9 @@ def get_repo_and_check_clean_checkout(
f"{path} is not a git repository (expecting a {name} repository)."
)
while repo.is_dirty():
if not click.confirm(f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"):
if not click.confirm(
f"Uncommitted changes exist in {path}. Commit or stash them. Ready to continue?"
):
raise click.ClickException("Aborted.")
return repo