mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +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
@@ -22,13 +22,13 @@ import socket
|
||||
import sys
|
||||
import threading
|
||||
|
||||
import six
|
||||
from six.moves import range
|
||||
|
||||
import ovs.dirs
|
||||
import ovs.unixctl
|
||||
import ovs.util
|
||||
|
||||
import six
|
||||
from six.moves import range
|
||||
|
||||
DESTINATIONS = {"console": "info", "file": "info", "syslog": "info"}
|
||||
PATTERNS = {
|
||||
"console": "%D{%Y-%m-%dT%H:%M:%SZ}|%05N|%c%T|%p|%m",
|
||||
|
||||
Reference in New Issue
Block a user