From f0e3404c7695db0ff586f2e4711732cdfbdab064 Mon Sep 17 00:00:00 2001 From: maltayyar2 Date: Thu, 4 Dec 2025 14:58:59 +0300 Subject: [PATCH] [FIX] event_custom: automatic update Auto-generated commit based on local changes. --- odex-event/event_custom/models/hints_test.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 odex-event/event_custom/models/hints_test.py diff --git a/odex-event/event_custom/models/hints_test.py b/odex-event/event_custom/models/hints_test.py deleted file mode 100644 index 02f51db79..000000000 --- a/odex-event/event_custom/models/hints_test.py +++ /dev/null @@ -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')])