in [1]: cheese = Cheese.objects.create(
... name='Colby',
... description=('Similar to Cheddar but without undergoing'
'the cheddaring process, Colby is a mild,'
'creamy cheese that was first created in 1885',
'in Colby, Wisconsin.'),
... firmness=Cheese.Firmness.SEMI_HARD)
The extraneous comma after "1885" turns a string into a tuple.
Remove the extraneous comma after "1885".
Location within the Book
Description
The extraneous comma after "1885" turns a string into a tuple.
Possible Solutions
Remove the extraneous comma after "1885".