diff options
author | 2024-08-19 12:08:02 +0100 | |
---|---|---|
committer | 2024-08-19 12:08:35 +0100 | |
commit | e429c8b0a9fb7c3f39079a7d30c4e10427b4f32e (patch) | |
tree | 88723b4280334a37df81c31e12eec57dc47eb9fa /arthur/config.py | |
parent | Allow loading the bot without a grafana_token set (diff) |
Allow loading the bot without a github_token set
Diffstat (limited to 'arthur/config.py')
-rw-r--r-- | arthur/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/config.py b/arthur/config.py index b1b1f2a..4d31103 100644 --- a/arthur/config.py +++ b/arthur/config.py @@ -21,7 +21,7 @@ class Config( youtube_api_key: pydantic.SecretStr | None = None grafana_url: str = "https://grafana.pydis.wtf" grafana_token: pydantic.SecretStr | None = None - github_token: pydantic.SecretStr + github_token: pydantic.SecretStr | None = None github_org: str = "python-discord" devops_role: int = 409416496733880320 |