I added a new model to the eodoo module that I am using but when updating the change it sends me a server error and does not update the page
Attached code:
``` class CustomSaleOrder(models.Model):
_inherit = 'sale.order'
zone = fields.Selection(['N', 'Norte', ('C', 'Centro'), ('S', 'Sur')], string='Zona
comercial')```
I add that and reload the server and in the terminal it sends me an error and in the browser it sends the error 500
What would I have to do to correct the error to be able to view the server
Type fields
selection
must always have tuples. You need parentheses in the first pair: