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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

1
changelog.d/19092.misc Normal file
View File

@ -0,0 +1 @@
Fix lints on main branch.

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