fix: fix 'too-many-lines' for pylint
This commit is contained in:
parent
0dc6b615e7
commit
d7eacf0f52
4 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,5 @@ disable=fixme,
|
|||
singleton-comparison,
|
||||
super-init-not-called,
|
||||
too-few-public-methods,
|
||||
too-many-lines,
|
||||
too-many-locals,
|
||||
too-many-nested-blocks,
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"""
|
||||
Base form classes
|
||||
"""
|
||||
# pylint: disable=too-many-lines
|
||||
|
||||
import logging
|
||||
from collections import OrderedDict
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"""
|
||||
Base grid classes
|
||||
"""
|
||||
# pylint: disable=too-many-lines
|
||||
|
||||
import functools
|
||||
import logging
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"""
|
||||
Base Logic for Master Views
|
||||
"""
|
||||
# pylint: disable=too-many-lines
|
||||
|
||||
import logging
|
||||
import os
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue