[FIX] event_custom: automatic update

Auto-generated commit based on local changes.
This commit is contained in:
maltayyar2 2025-12-04 14:58:59 +03:00
parent 270bec45fd
commit f0e3404c76
1 changed files with 0 additions and 20 deletions

View File

@ -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')])