Paulo Amaral

Results 2 issues of Paulo Amaral

If we have a `ListField` with items of type `models.Base`, for example: ```python from jsonmodels import models, fields class Cat(models.Base): name = fields.StringField(required=True) class Person(models.Base): pets = fields.ListField([Cat]) ``` And...

**Bug Report** `extract_table` re-orders the table rows by the `y` axis (top to bottom), which works for most cases. The issue comes if we have a table with a header...

bug
component: tables