appease the linter

This commit is contained in:
Andrew 2023-02-15 18:44:53 -05:00
parent e52294dbb3
commit 224e55429f

View File

@ -76,7 +76,7 @@ class Authentication:
output = self.check(token)
if output is None:
raise Exception("Invalid token")
raise ValueError("Invalid token")
return output
def check_bool(self, token) -> bool: