summaryrefslogtreecommitdiff
path: root/build/lib/nba/cli.py
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-05-04 17:12:26 -0500
committerChristian Cleberg <[email protected]>2026-05-04 17:13:16 -0500
commit052cd6852c73f5fe4096e1391f9e90c426fb94c6 (patch)
tree64ae308a728e8092571a9a3f2c44db4827556428 /build/lib/nba/cli.py
parent14d8039e4a6ae27c1a7441a375b87617fd5aea4d (diff)
downloadnba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.tar.gz
nba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.tar.bz2
nba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.zip
fix: ruff format & remove unused home_title var
Diffstat (limited to 'build/lib/nba/cli.py')
-rw-r--r--build/lib/nba/cli.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/lib/nba/cli.py b/build/lib/nba/cli.py
index e5f460d..2e04b8b 100644
--- a/build/lib/nba/cli.py
+++ b/build/lib/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)"
+ )