diff options
| author | Christian Cleberg <[email protected]> | 2026-05-04 17:12:26 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-05-04 17:13:16 -0500 |
| commit | 052cd6852c73f5fe4096e1391f9e90c426fb94c6 (patch) | |
| tree | 64ae308a728e8092571a9a3f2c44db4827556428 /nba/cli.py | |
| parent | 14d8039e4a6ae27c1a7441a375b87617fd5aea4d (diff) | |
| download | nba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.tar.gz nba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.tar.bz2 nba-scores-052cd6852c73f5fe4096e1391f9e90c426fb94c6.zip | |
fix: ruff format & remove unused home_title var
Diffstat (limited to 'nba/cli.py')
| -rw-r--r-- | nba/cli.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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)" + ) |
