ricogini

Results 1 issues of ricogini

A serialization exception is thrown if a handler is `async` instead of decorated with `@coroutine` Example: ```python class MyFailingHandler(APIHandler): @schema.validate(input_schema={'type': 'string'}) async def post(self): self.set_status(201, "created") ``` Thrown error: ```...