From 5eef0576d6ec2fba042ee1178c2542dcf6a96ca4 Mon Sep 17 00:00:00 2001 From: Arif Ali Date: Fri, 12 Apr 2024 16:54:30 +0100 Subject: [pylint] pylint and flake8 updates pylint for the following rules applied * C0411: wrong-import-order * R0912: too-many-branches * R0914: too-many-locals * R1725: super-with-arguments * E1101: no-member Resolves: #3597 Signed-off-by: Arif Ali --- tests/report_tests/plugin_tests/logs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/report_tests') diff --git a/tests/report_tests/plugin_tests/logs.py b/tests/report_tests/plugin_tests/logs.py index c3811b3f..2f4841fb 100644 --- a/tests/report_tests/plugin_tests/logs.py +++ b/tests/report_tests/plugin_tests/logs.py @@ -9,10 +9,9 @@ import random import os - -from sos_tests import StageOneReportTest, StageTwoReportTest from string import ascii_uppercase, digits from time import sleep +from sos_tests import StageOneReportTest, StageTwoReportTest class LogsPluginTest(StageOneReportTest): -- cgit