[Fixed]-Django __str__ returned non-string (type tuple), i didn't define __str__

1👍

Look for a stray comma at the end of any __str__ definitions that you did write.

Returning a value with a comma at the end will turn your value into a tuple containing that value.

Leave a comment