Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cli/src/llc/pr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import click
import typer
import llc._git
import llc._gh
Expand All @@ -24,7 +23,7 @@ def cmd_create() -> None:
if llc._interactive.confirm("Uncommitted changes found. Commit first?", default=True):
console.print("[yellow]Please commit your changes manually, then re-run.[/yellow]")
raise typer.Exit()
except click.exceptions.Exit:
except typer.Exit:
raise
except Exception:
console.print("[red]Failed to check for uncommitted changes.[/red]")
Expand Down
Loading