Run ruff format
This commit is contained in:
parent
9e70fc25d4
commit
5c73d55d91
@ -65,12 +65,14 @@ def since(
|
||||
return
|
||||
typer.echo(count)
|
||||
|
||||
|
||||
@watchlist_app.command()
|
||||
def list(watchlist: str | None = None, format: OutputFormat = OutputFormat.CONSOLE):
|
||||
"""List PRs in watchlist."""
|
||||
wl = Watchlist.from_file()
|
||||
wl.print(format=format)
|
||||
|
||||
|
||||
@watchlist_app.command()
|
||||
def add(pr: int):
|
||||
"""Add PR to watchlist."""
|
||||
@ -80,6 +82,7 @@ def add(pr: int):
|
||||
info = wl.pr(pr)
|
||||
print(f"Added #{info.pr}: {info.title} to watchlist.")
|
||||
|
||||
|
||||
@watchlist_app.command()
|
||||
def remove(pr: int):
|
||||
"""Remove PR from watchlist."""
|
||||
@ -88,6 +91,7 @@ def remove(pr: int):
|
||||
wl.to_file()
|
||||
print(f"Removed #{pr} from watchlist.")
|
||||
|
||||
|
||||
def main():
|
||||
app()
|
||||
|
||||
|
@ -7,6 +7,7 @@ from rich.console import Console
|
||||
|
||||
from nixprstatus.pr import get_pr
|
||||
|
||||
|
||||
class OutputFormat(str, Enum):
|
||||
CONSOLE = "console"
|
||||
JSON = "json"
|
||||
|
Loading…
Reference in New Issue
Block a user