3
0
Fork 0

fix: make pylint happy

This commit is contained in:
Lance Edgar 2026-02-25 09:10:26 -06:00
parent 7fcc24ce0d
commit 60b5e30b3f

View file

@ -1080,14 +1080,14 @@ class Form: # pylint: disable=too-many-instance-attributes,too-many-public-meth
return HTML.literal(html) return HTML.literal(html)
def render_vue_field( # pylint: disable=unused-argument,too-many-locals def render_vue_field(
self, self,
fieldname, fieldname,
readonly=None, readonly=None,
label=True, label=True,
horizontal=True, horizontal=True,
**kwargs, **kwargs,
): ): # pylint: disable=unused-argument,too-many-locals,too-many-branches
""" """
Render the given field completely, i.e. ``<b-field>`` wrapper Render the given field completely, i.e. ``<b-field>`` wrapper
with label and a widget, with validation errors flagged as with label and a widget, with validation errors flagged as