Skip to content

Commit

Permalink
Fix github_access_token, it should be a string, not a list
Browse files Browse the repository at this point in the history
Accidental tuple was created because of a stray `,`.
  • Loading branch information
cvicentiu committed Feb 6, 2025
1 parent f5154e7 commit 919d137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def base_master_config(
):
# TODO(cvicentiu) either move this to environ or all other params to config
# file.
github_access_token = (config["private"]["gh_mdbci"]["access_token"],)
github_access_token = config["private"]["gh_mdbci"]["access_token"]
db_url = config["private"]["db_url"]

return {
Expand Down

0 comments on commit 919d137

Please sign in to comment.