Skip to content

Commit f9d7e03

Browse files
committed
Update test_code_style.py
1 parent a1fa7b9 commit f9d7e03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_unittests/ut_module/test_code_style.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_style_src(self):
1717
check_pep8(src_, fLOG=fLOG,
1818
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
1919
'W0212', 'W0703', 'W0107', 'C0302', 'C0209',
20-
'C3001'),
20+
'C3001', 'R1735'),
2121
skip=["Too many nested blocks",
2222
"Module 'numpy.random' has no 'RandomState' member",
2323
"dataframe_split.py:60: [E731]",
@@ -29,7 +29,7 @@ def test_style_test(self):
2929
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
3030
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
3131
'C0111', 'W0107', 'C0302', 'R1732', 'C0209',
32-
'C3001'),
32+
'C3001', 'R1735'),
3333
skip=[])
3434

3535

0 commit comments

Comments
 (0)