style: fix ruff formatting for web_form_field.py

This commit is contained in:
UmakanthKaspa 2025-10-16 04:32:39 +00:00
parent ea9c86ecf4
commit 9e346c7ab8

View file

@ -19,7 +19,34 @@ class WebFormField(Document):
depends_on: DF.Code | None
description: DF.Text | None
fieldname: DF.Literal[None]
fieldtype: DF.Literal["Attach", "Attach Image", "Check", "Currency", "Color", "Data", "Date", "Datetime", "Duration", "Float", "HTML", "Int", "Link", "Password", "Phone", "Rating", "Select", "Signature", "Small Text", "Text", "Text Editor", "Table", "Time", "Section Break", "Column Break", "Page Break"]
fieldtype: DF.Literal[
"Attach",
"Attach Image",
"Check",
"Currency",
"Color",
"Data",
"Date",
"Datetime",
"Duration",
"Float",
"HTML",
"Int",
"Link",
"Password",
"Phone",
"Rating",
"Select",
"Signature",
"Small Text",
"Text",
"Text Editor",
"Table",
"Time",
"Section Break",
"Column Break",
"Page Break",
]
hidden: DF.Check
label: DF.Data | None
mandatory_depends_on: DF.Code | None