as OrderedDict is always provided by collections module since Python3.1,
and we only support python3.6 and up, there is no need to try to import
OrderedDict from collections.abc anymore.
Signed-off-by: Kefu Chai <kchai@redhat.com>
import socket
import struct
import time
-try:
- from collections.abc import OrderedDict
-except ImportError:
- from collections import OrderedDict
+from collections import OrderedDict
from fcntl import ioctl
from fnmatch import fnmatch
from prettytable import PrettyTable, HEADER