NeverSee
NeverSee
In current flask-openapi3, I can only map 200 to Resp, 201: Resp1. ``` python app = OpenAPI(__name__) class Resp(BaseModel): a: int class Resp1(BaseModel): b: int @app.get("/", responses={200: Resp, 201: Resp1})...
In flask-openapi3, I can only specify the item of 422 response array, but I want the response of 422 is a object.
gofumpt has a rule `No empty lines around function bodies`, which is conflict with whitespace configuration `multi-func`. The configuration enforces newlines (or comments) after every multi-line function signature, according to...