Leonardo Arroyo

Results 7 comments of Leonardo Arroyo

Getting the same on OSX.

@daimon99, on list routes, you can set the filter_backends property on the ViewSet to correctly generate the schema, still it feels a little hacky.

@LesleyDuyndam I really can't remember, sorry :(

Also getting this. Openpyxl detects illegal characters with the following regex: ```python ILLEGAL_CHARACTERS_RE = re.compile(r'[\000-\010]|[\013-\014]|[\016-\037]') ``` I'm using django-import-export, which in turn uses tablib, which uses openpyxl. Still trying to...

I fixed the issue by cleaning the data before it gets sent to tablib. If anyone else is having this issue with django-import-export, you can clean your fields by overriding...