Skip to content

Commit d5d5311

Browse files
committed
Update test_code_style.py
1 parent cd244ea commit d5d5311

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
@@ -16,7 +16,7 @@ def test_style_src(self):
1616
thi, "..", "..", "pandas_streaming"))
1717
check_pep8(src_, fLOG=fLOG,
1818
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
19-
'W0212', 'W0703', 'W0107', 'C0302'),
19+
'W0212', 'W0703', 'W0107', 'C0302', 'C0209'),
2020
skip=["Too many nested blocks",
2121
"Module 'numpy.random' has no 'RandomState' member",
2222
"dataframe_split.py:60: [E731]",
@@ -27,7 +27,7 @@ def test_style_test(self):
2727
test = os.path.normpath(os.path.join(thi, "..", ))
2828
check_pep8(test, fLOG=fLOG, neg_pattern="temp_.*",
2929
pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613',
30-
'C0111', 'W0107', 'C0302', 'R1732'),
30+
'C0111', 'W0107', 'C0302', 'R1732', 'C0209'),
3131
skip=[])
3232

3333

0 commit comments

Comments
 (0)