Format everything
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user