aboutsummaryrefslogtreecommitdiff
path: root/nba/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'nba/cli.py')
-rw-r--r--nba/cli.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/nba/cli.py b/nba/cli.py
index a1a3eb6..4e13abf 100644
--- a/nba/cli.py
+++ b/nba/cli.py
@@ -15,11 +15,11 @@ def nba() -> None:
parser.add_argument('--standings', action='store_true', help='Display the standings')
args = parser.parse_args()
- games, standings = fetch_data.fetch_data()
+ games, ranks = fetch_data.fetch_data()
if args.scores:
- scores.build_scoreboard(games, standings)
+ scores.build_scoreboard(games, ranks)
elif args.standings:
- standings.build_standings(standings)
+ standings.build_standings(ranks)
else:
- print("Please specify --scores or --standings") \ No newline at end of file
+ print("Please specify --scores or --standings")