mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 22:35:15 +00:00
Adapt to flake8-import-order
https://review.openstack.org/#/c/432906/ flake8-import-order adds 3 new flake8 warnings: I100: Your import statements are in the wrong order. I101: The names in your from import are in the wrong order. I201: Missing newline between sections or imports. Signed-off-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
committed by
Ben Pfaff
parent
5575908b01
commit
6c7050b59c
@@ -18,18 +18,23 @@ rpcserver is an XML RPC server that allows RPC client to initiate tests
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import exceptions
|
||||
import sys
|
||||
|
||||
import exceptions
|
||||
|
||||
import six.moves.xmlrpc_client
|
||||
from twisted.internet import reactor
|
||||
from twisted.internet.error import CannotListenError
|
||||
from twisted.web import xmlrpc
|
||||
from twisted.web import server
|
||||
|
||||
import tcp
|
||||
|
||||
from twisted.internet import reactor
|
||||
from twisted.internet.error import CannotListenError
|
||||
from twisted.web import server
|
||||
from twisted.web import xmlrpc
|
||||
|
||||
import udp
|
||||
|
||||
import util
|
||||
|
||||
import vswitch
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user