File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
pylint
3
3
openstacksdk
4
4
pre-commit
5
+ tabulate
Original file line number Diff line number Diff line change @@ -80,7 +80,8 @@ def parse_where_runner_fixture(
80
80
"""
81
81
mock_kwargs = {"arg1" : "val1" , "arg2" : "val2" }
82
82
83
- # pylint:disable=too-many-arguments
83
+ # ignore too-many-arguments warnings
84
+ # pylint: disable=R0913,R0917
84
85
def _parse_where_runner (
85
86
mock_get_filter_return ,
86
87
mock_get_filter_func_return ,
Original file line number Diff line number Diff line change 9
9
def run_build_query_deps_test_case_fixture ():
10
10
"""Fixture for running build_query_deps"""
11
11
12
- # pylint:disable=too-many-arguments
12
+ # ignore too-many-arguments warnings
13
+ # pylint: disable=R0913,R0917
13
14
@patch ("openstackquery.query_factory.QueryBuilder" )
14
15
@patch ("openstackquery.query_factory.QueryOutput" )
15
16
@patch ("openstackquery.query_factory.QueryParser" )
You can’t perform that action at this time.
0 commit comments