aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <156287552+ccleberg@users.noreply.github.com>2025-03-29 01:09:41 -0500
committerGitHub <noreply@github.com>2025-03-29 01:09:41 -0500
commit4d82554601ad5aba75accd4917bbad1969892203 (patch)
treea023ffa6ee964fe31c7a339905a1db2afa83dd52
parent49ad1edd521650864221524e5f0a7a605bb44cbb (diff)
parenta4a10867fc97f042049899875c0daa18747ec749 (diff)
downloadnba-scores-4d82554601ad5aba75accd4917bbad1969892203.tar.gz
nba-scores-4d82554601ad5aba75accd4917bbad1969892203.tar.bz2
nba-scores-4d82554601ad5aba75accd4917bbad1969892203.zip
Merge pull request #2 from ccleberg/implement-shortcuts
add support for shortcut arguments
-rw-r--r--nba/cli.py4
-rw-r--r--pyproject.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/nba/cli.py b/nba/cli.py
index 4e13abf..c41055f 100644
--- a/nba/cli.py
+++ b/nba/cli.py
@@ -11,8 +11,8 @@ def nba() -> None:
Parse command-line arguments and display either scoreboard or standings.
"""
parser = argparse.ArgumentParser(description="NBA Scoreboard and Standings")
- parser.add_argument('--scores', action='store_true', help='Display the scoreboard')
- parser.add_argument('--standings', action='store_true', help='Display the standings')
+ parser.add_argument('--scores', '-sc', action='store_true', help='Display the scoreboard')
+ parser.add_argument('--standings', '-st', action='store_true', help='Display the standings')
args = parser.parse_args()
games, ranks = fetch_data.fetch_data()
diff --git a/pyproject.toml b/pyproject.toml
index 9e7312b..39d6bc1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "nba-scores"
-version = "0.1.6"
+version = "0.1.7"
authors = [
{ name="Christian Cleberg", email="hello@cmc.pub" },
]