From 052cd6852c73f5fe4096e1391f9e90c426fb94c6 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 4 May 2026 17:12:26 -0500 Subject: fix: ruff format & remove unused home_title var --- nba/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nba/cli.py') diff --git a/nba/cli.py b/nba/cli.py index e5f460d..2e04b8b 100644 --- a/nba/cli.py +++ b/nba/cli.py @@ -19,9 +19,7 @@ def nba() -> None: parser.add_argument( "--standings", "-st", action="store_true", help="Display the standings" ) - parser.add_argument( - "--tui", action="store_true", help="Launch the interactive TUI" - ) + parser.add_argument("--tui", action="store_true", help="Launch the interactive TUI") parser.add_argument( "--refresh", type=int, @@ -47,4 +45,6 @@ def nba() -> None: elif args.standings: standings.build_standings(ranks) else: - print("Please specify --scores or --standings (or use --tui for interactive mode)") + print( + "Please specify --scores or --standings (or use --tui for interactive mode)" + ) -- cgit v1.2.3