diff options
author | Christian Cleberg <hello@cmc.pub> | 2025-03-29 00:31:09 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cmc.pub> | 2025-03-29 00:31:09 -0500 |
commit | 0809a7758f7e201d10c88d6f95fd86085a57e65d (patch) | |
tree | 57c4d8be16fcc92680e5ef696b97bd9be1a90fed /nba/fetch_data.py | |
parent | 8e119140ef222168e856f4a3a750bd1337d3b2f0 (diff) | |
download | nba-scores-0809a7758f7e201d10c88d6f95fd86085a57e65d.tar.gz nba-scores-0809a7758f7e201d10c88d6f95fd86085a57e65d.tar.bz2 nba-scores-0809a7758f7e201d10c88d6f95fd86085a57e65d.zip |
fix pylint errors
Diffstat (limited to 'nba/fetch_data.py')
-rw-r--r-- | nba/fetch_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nba/fetch_data.py b/nba/fetch_data.py index bba3a59..71cac33 100644 --- a/nba/fetch_data.py +++ b/nba/fetch_data.py @@ -25,4 +25,4 @@ def fetch_data() -> tuple: games = json.loads(games_json) standings = json.loads(standings_json) - return games, standings
\ No newline at end of file + return games, standings |