From d822a54911ab914c7c05e32586b7624f17f0768d Mon Sep 17 00:00:00 2001 From: Albert Esteve Date: Mon, 5 Sep 2022 14:59:12 +0200 Subject: [PATCH] pylintrc: enable wrong-import-order Signed-off-by: Albert Esteve --- backup/test.py | 3 +-- delete-snapshot-chain/test.py | 3 +-- delete-snapshot/test.py | 3 +-- pylintrc | 1 + 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/backup/test.py b/backup/test.py index 41706f2..9d8c5e3 100644 --- a/backup/test.py +++ b/backup/test.py @@ -5,10 +5,9 @@ import threading import time import uuid -import yaml - from collections import Counter +import yaml import ovirtsdk4 as sdk import ovirtsdk4.types as types diff --git a/delete-snapshot-chain/test.py b/delete-snapshot-chain/test.py index b3006a7..b74fa0f 100644 --- a/delete-snapshot-chain/test.py +++ b/delete-snapshot-chain/test.py @@ -2,10 +2,9 @@ import threading import time import uuid -import yaml - from collections import Counter +import yaml import ovirtsdk4 as sdk import ovirtsdk4.types as types diff --git a/delete-snapshot/test.py b/delete-snapshot/test.py index eea3a13..8c65cc0 100644 --- a/delete-snapshot/test.py +++ b/delete-snapshot/test.py @@ -3,10 +3,9 @@ import threading import time import uuid -import yaml - from collections import Counter +import yaml import ovirtsdk4 as sdk import ovirtsdk4.types as types diff --git a/pylintrc b/pylintrc index 9487d7f..d1c08c3 100644 --- a/pylintrc +++ b/pylintrc @@ -158,6 +158,7 @@ enable=c-extension-no-member, consider-using-from-import, import-error, attribute-defined-outside-init, + wrong-import-order, [DESIGN]