Format everything

This commit is contained in:
Jacob Windsor
2025-02-19 16:25:48 +01:00
parent ed6c49a1b7
commit ecfef9a09d
22 changed files with 115 additions and 62 deletions
+1 -1
View File
@@ -6,4 +6,4 @@ class BaseError(HTTPException):
def __init__(self, detail: str):
self.detail = detail
super().__init__(status_code=self.status_code, detail=self.detail)
super().__init__(status_code=self.status_code, detail=self.detail)
+1 -1
View File
@@ -7,4 +7,4 @@ class NotAuthenticatedError(BaseError):
status_code: int = status.HTTP_401_UNAUTHORIZED
def __init__(self):
super().__init__("Not authenticated")
super().__init__("Not authenticated")