Skip to content

Commit

Permalink
fix: return correct number of values
Browse files Browse the repository at this point in the history
  • Loading branch information
bobdoah committed Mar 5, 2025
1 parent 40f6fdd commit d338a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strava/strava_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_client_config(
data = tomllib.load(f)
except FileNotFoundError:
print(f"client config: {client_config} does not exist, skipping read")
return (None, None, None, None, None, None)
return (None, None, None, None, None)
return (
data["client_id"],
data["client_secret"],
Expand Down

0 comments on commit d338a46

Please sign in to comment.