3
0
Fork 0

fix: fix 'too-many-lines' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 10:00:06 -05:00
parent 0dc6b615e7
commit d7eacf0f52
4 changed files with 3 additions and 1 deletions

View file

@ -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,

View file

@ -23,6 +23,7 @@
"""
Base form classes
"""
# pylint: disable=too-many-lines
import logging
from collections import OrderedDict

View file

@ -23,6 +23,7 @@
"""
Base grid classes
"""
# pylint: disable=too-many-lines
import functools
import logging

View file

@ -23,6 +23,7 @@
"""
Base Logic for Master Views
"""
# pylint: disable=too-many-lines
import logging
import os