Re: [PATCH v10 06/14] iotests: alphabetize standard imports

2020-03-31 Thread Philippe Mathieu-Daudé

On 3/31/20 2:00 AM, John Snow wrote:

I had to fix a merge conflict, so do this tiny harmless thing while I'm
here.

Signed-off-by: John Snow 
Reviewed-by: Max Reitz 
---
  tests/qemu-iotests/iotests.py | 18 +-
  1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 51f84475d9..e6f9f62b2b 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -16,19 +16,19 @@
  # along with this program.  If not, see .
  #
  
+import atexit

+from collections import OrderedDict
+import faulthandler
+import io
+import json
+import logging
  import os
  import re
+import signal
+import struct
  import subprocess
-import unittest
  import sys
-import struct
-import json
-import signal
-import logging
-import atexit
-import io
-from collections import OrderedDict
-import faulthandler
+import unittest


Reviewed-by: Philippe Mathieu-Daudé 

  
  # pylint: disable=import-error, wrong-import-position

  sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))






[PATCH v10 06/14] iotests: alphabetize standard imports

2020-03-30 Thread John Snow
I had to fix a merge conflict, so do this tiny harmless thing while I'm
here.

Signed-off-by: John Snow 
Reviewed-by: Max Reitz 
---
 tests/qemu-iotests/iotests.py | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 51f84475d9..e6f9f62b2b 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -16,19 +16,19 @@
 # along with this program.  If not, see .
 #
 
+import atexit
+from collections import OrderedDict
+import faulthandler
+import io
+import json
+import logging
 import os
 import re
+import signal
+import struct
 import subprocess
-import unittest
 import sys
-import struct
-import json
-import signal
-import logging
-import atexit
-import io
-from collections import OrderedDict
-import faulthandler
+import unittest
 
 # pylint: disable=import-error, wrong-import-position
 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
-- 
2.21.1