From 190729ae8ecc7bd7ea75e98cf6fcfdb4a7103c06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?xavier=20dupr=C3=A9?= Date: Sun, 2 May 2021 00:16:27 +0200 Subject: [PATCH] Update test_code_style.py --- _unittests/ut_module/test_code_style.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_unittests/ut_module/test_code_style.py b/_unittests/ut_module/test_code_style.py index 595281e71..1db1afada 100644 --- a/_unittests/ut_module/test_code_style.py +++ b/_unittests/ut_module/test_code_style.py @@ -102,7 +102,7 @@ def test_style_src(self): 'W020', 'W0212', 'C0123', 'C0302', 'W0221', 'R0912', 'E0203', 'W0201', 'R1710', 'W0603', 'R1711', 'R1714', 'W0107', 'W0640', 'C0415', - 'W1114', 'R1721')) + 'W1114', 'R1721', 'R1732', 'R1730')) def test_style_test(self): fLOG( @@ -159,7 +159,7 @@ def test_style_test(self): pylint_ignore=('C0103', 'C1801', 'R0201', 'R1705', 'W0108', 'W0613', 'C0111', 'C0200', 'C0122', "W0123", 'W0703', 'W0212', 'W0201', 'R1711', 'R1714', 'W0107', - 'C0415', 'W1114', 'R1721')) + 'C0415', 'W1114', 'R1721', 'R1732', 'R1730')) if __name__ == "__main__":