[REM] Unnecessary `size` parameters on char fields
[odoo/odoo.git] / addons / hr_attendance / hr_attendance.py
index 5495ebe..a7950fe 100644 (file)
@@ -30,7 +30,7 @@ class hr_action_reason(osv.osv):
     _name = "hr.action.reason"
     _description = "Action Reason"
     _columns = {
-        'name': fields.char('Reason', size=64, required=True, help='Specifies the reason for Signing In/Signing Out.'),
+        'name': fields.char('Reason', required=True, help='Specifies the reason for Signing In/Signing Out.'),
         'action_type': fields.selection([('sign_in', 'Sign in'), ('sign_out', 'Sign out')], "Action Type"),
     }
     _defaults = {