Skip to content

Commit 3d495f8

Browse files
committed
lint
1 parent f6ef5cb commit 3d495f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

_unittests/ut_module/test_code_style.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ def test_style_src(self):
1616
thi, "..", "..", "pandas_streaming"))
1717
check_pep8(src_, fLOG=fLOG,
1818
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
19-
'W0212', 'W0703', 'W0107', 'C0302', 'C0209'),
19+
'W0212', 'W0703', 'W0107', 'C0302', 'C0209',
20+
'C3001'),
2021
skip=["Too many nested blocks",
2122
"Module 'numpy.random' has no 'RandomState' member",
2223
"dataframe_split.py:60: [E731]",
@@ -27,7 +28,8 @@ def test_style_test(self):
2728
test = os.path.normpath(os.path.join(thi, "..", ))
2829
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
2930
pylint_ignore=('C0103', 'C1801', 'R1705', 'W0108', 'W0613',
30-
'C0111', 'W0107', 'C0302', 'R1732', 'C0209'),
31+
'C0111', 'W0107', 'C0302', 'R1732', 'C0209',
32+
'C3001'),
3133
skip=[])
3234

3335

0 commit comments

Comments
 (0)