fix: make pylint happy
This commit is contained in:
parent
7fcc24ce0d
commit
60b5e30b3f
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue