Browse Source

PEP8 in company.py

pull/107/head^2
César López Ramírez 4 years ago
parent
commit
11d3870293
  1. 7
      easy_my_coop_website/models/company.py

7
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')
Loading…
Cancel
Save