migrator functions updated

This commit is contained in:
2024-11-11 22:23:07 +03:00
parent f6135ced5f
commit ffb85a62f6
56 changed files with 567 additions and 485 deletions

View File

@@ -24,10 +24,7 @@ def exception_handler_http(request: Request, exc: HTTPException):
err = e
return JSONResponse(
status_code=exc.status_code,
content={
"detail":str(exc_detail),
"mesasage": f"{e}"
},
content={"detail": str(exc_detail), "mesasage": f"{e}"},
)