[FIX] event_custom: automatic update
Auto-generated commit based on local changes.
This commit is contained in:
parent
270bec45fd
commit
f0e3404c76
|
|
@ -1,20 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import models, fields
|
||||
import unused_import # F401
|
||||
|
||||
class HintsTest(models.Model):
|
||||
_name = 'hints.test'
|
||||
name = fields.Char('Name')
|
||||
|
||||
# E501
|
||||
long_field = fields.Text('Field', help='This is an extremely long text that exceeds one hundred and twenty characters maximum line length limit')
|
||||
|
||||
# F821
|
||||
def buggy(self):
|
||||
return undefined_variable + 1
|
||||
|
||||
# E225
|
||||
count=fields.Integer(default=0)
|
||||
|
||||
# W291
|
||||
status = fields.Selection([('a', 'A')])
|
||||
Loading…
Reference in New Issue