Using django-import-export
to export data from django admin in excel xlsx format.
However, numeric fields export as text in excel.
I'd like to export correctly as numeric fields.
Documentation has a sample syntax for BooleanWidget
, but it's not working, it replaces the value with the object __str__ value, instead of converting the value to a number.
Found out I have to instantiate the widget, not reference the class (Use parenthesis at the end)
Created a pull request to fix sample usage.