From da13888ba399665d88d69312305c345f1714d6ed Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Tue, 22 Aug 2023 14:33:10 +0100 Subject: Correct tuple typehint in config --- arthur/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arthur/config.py') 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 -- cgit v1.2.3