diff options
author | 2024-08-19 12:07:19 +0100 | |
---|---|---|
committer | 2024-08-19 12:07:19 +0100 | |
commit | 4300896cc205a72ea2973a670186f4029b6bfde3 (patch) | |
tree | d6c7f173034c73fb2c2aecadc8057ee8db7f12ac /arthur/config.py | |
parent | Allow loading the bot without a cloudflare_token set (diff) |
Allow loading the bot without a grafana_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 db92ad7..b1b1f2a 100644 --- a/arthur/config.py +++ b/arthur/config.py @@ -20,7 +20,7 @@ class Config( cloudflare_token: pydantic.SecretStr | None = None youtube_api_key: pydantic.SecretStr | None = None grafana_url: str = "https://grafana.pydis.wtf" - grafana_token: pydantic.SecretStr + grafana_token: pydantic.SecretStr | None = None github_token: pydantic.SecretStr github_org: str = "python-discord" |