fix: fix 'too-many-statements' for pylint
This commit is contained in:
parent
d39f5afd4b
commit
1fec99bc92
2 changed files with 3 additions and 3 deletions
|
@ -32,5 +32,3 @@ disable=fixme,
|
||||||
too-many-nested-blocks,
|
too-many-nested-blocks,
|
||||||
too-many-positional-arguments,
|
too-many-positional-arguments,
|
||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
too-many-statements,
|
|
||||||
ungrouped-imports,
|
|
||||||
|
|
|
@ -1473,7 +1473,9 @@ class Grid: # pylint: disable=too-many-instance-attributes
|
||||||
# configuration methods
|
# configuration methods
|
||||||
##############################
|
##############################
|
||||||
|
|
||||||
def load_settings(self, persist=True): # pylint: disable=too-many-branches
|
def load_settings( # pylint: disable=too-many-branches,too-many-statements
|
||||||
|
self, persist=True
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
Load all effective settings for the grid.
|
Load all effective settings for the grid.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue