From 11d38702935f317d10bf8f4bb28912aca3994d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20L=C3=B3pez=20Ram=C3=ADrez?= Date: Mon, 29 Jun 2020 14:09:27 +0200 Subject: [PATCH] PEP8 in company.py --- easy_my_coop_website/models/company.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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')