You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Possible Solutions
Remove the extraneous comma after "1885".
The text was updated successfully, but these errors were encountered:
Location within the Book
Description
The extraneous comma after "1885" turns a string into a tuple.
Possible Solutions
Remove the extraneous comma after "1885".
The text was updated successfully, but these errors were encountered: