diff --git a/easy_my_coop_website/models/company.py b/easy_my_coop_website/models/company.py index 31166e7..49b52c9 100644 --- a/easy_my_coop_website/models/company.py +++ b/easy_my_coop_website/models/company.py @@ -1,10 +1,9 @@ -from odoo import api, fields, models +from odoo import fields, models class ResCompany(models.Model): _inherit = 'res.company' captcha_type = fields.Selection([ - ('none','Disabled'), + ('none', 'Disabled'), ('google', 'Google Recaptcha'), - ],'Captcha type or disabled',required=True,default='google') - + ], 'Captcha type or disabled',required=True, default='google')