From 9e346c7ab8002e11c855ce1fbd5db0d8f5cb50a7 Mon Sep 17 00:00:00 2001 From: UmakanthKaspa Date: Thu, 16 Oct 2025 04:32:39 +0000 Subject: [PATCH] style: fix ruff formatting for web_form_field.py --- .../doctype/web_form_field/web_form_field.py | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/frappe/website/doctype/web_form_field/web_form_field.py b/frappe/website/doctype/web_form_field/web_form_field.py index 8c6a7023b1..585bc9bd8c 100644 --- a/frappe/website/doctype/web_form_field/web_form_field.py +++ b/frappe/website/doctype/web_form_field/web_form_field.py @@ -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