浏览代码

Group global imports at the top

Daniel Martí 10 年之前
父节点
当前提交
cf21c6d17b
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      lib/chutney/Traffic.py

+ 1 - 2
lib/chutney/Traffic.py

@@ -20,6 +20,7 @@
 #
 # For example code, see main() below.
 
+import sys
 import socket
 import select
 import struct
@@ -325,8 +326,6 @@ class TrafficTester():
             s.close()
         return self.tests.all_done() and self.tests.failure_count() == 0
 
-import sys
-
 
 def main():
     """Test the TrafficTester by sending and receiving some data."""