diff options
| author | 2023-08-22 14:33:10 +0100 | |
|---|---|---|
| committer | 2023-08-22 14:33:10 +0100 | |
| commit | da13888ba399665d88d69312305c345f1714d6ed (patch) | |
| tree | 82849bf2e98ee06dfa122e4c5aa902aaf983737e | |
| parent | Pull devops rules from Github, not notion (#98) (diff) | |
Correct tuple typehint in config
| -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 9c02743..c7d61ce 100644 --- a/arthur/config.py +++ b/arthur/config.py @@ -14,7 +14,7 @@ class Config(      token: str      # Discord bot prefix -    prefixes: tuple[str] = ("arthur ", "M-x ") +    prefixes: tuple[str, ...] = ("arthur ", "M-x ")      # Authorised role ID for usage      devops_role: int = 409416496733880320  |