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,
|
singleton-comparison,
|
||||||
super-init-not-called,
|
super-init-not-called,
|
||||||
too-few-public-methods,
|
too-few-public-methods,
|
||||||
too-many-lines,
|
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-nested-blocks,
|
too-many-nested-blocks,
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"""
|
"""
|
||||||
Base form classes
|
Base form classes
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=too-many-lines
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"""
|
"""
|
||||||
Base grid classes
|
Base grid classes
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=too-many-lines
|
||||||
|
|
||||||
import functools
|
import functools
|
||||||
import logging
|
import logging
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"""
|
"""
|
||||||
Base Logic for Master Views
|
Base Logic for Master Views
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=too-many-lines
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue