mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 01:51:26 +00:00
flake8: Fix E721 check failures.
E721: "do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()`" This fixes `make flake8-check` target when running with pycodestyle>=1.2. Acked-by: Eelco Chaudron <echaudro@redhat.com> Signed-off-by: Ihar Hrachyshka <ihrachys@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
parent
28f6e7602c
commit
fdbf0bb2ae
@ -377,7 +377,7 @@ class Session(object):
|
||||
self.stream = None
|
||||
self.pstream = None
|
||||
self.seqno = 0
|
||||
if type(remotes) != list:
|
||||
if type(remotes) is not list:
|
||||
remotes = [remotes]
|
||||
self.remotes = remotes
|
||||
random.shuffle(self.remotes)
|
||||
|
@ -199,13 +199,13 @@ notify REMOTE METHOD PARAMS send notification and exit
|
||||
sys.exit(1)
|
||||
|
||||
func, n_args = commands[command_name]
|
||||
if type(n_args) == tuple:
|
||||
if type(n_args) is tuple:
|
||||
if len(args) < n_args[0]:
|
||||
sys.stderr.write("%s: \"%s\" requires at least %d arguments but "
|
||||
"only %d provided\n"
|
||||
% (argv[0], command_name, n_args, len(args)))
|
||||
sys.exit(1)
|
||||
elif type(n_args) == int:
|
||||
elif type(n_args) is int:
|
||||
if len(args) != n_args:
|
||||
sys.stderr.write("%s: \"%s\" requires %d arguments but %d "
|
||||
"provided\n"
|
||||
|
@ -37,7 +37,7 @@ vlog.init(None)
|
||||
|
||||
|
||||
def unbox_json(json):
|
||||
if type(json) == list and len(json) == 1:
|
||||
if type(json) is list and len(json) == 1:
|
||||
return json[0]
|
||||
else:
|
||||
return json
|
||||
@ -325,9 +325,9 @@ def substitute_uuids(json, symtab):
|
||||
symbol = symtab.get(json)
|
||||
if symbol:
|
||||
return str(symbol)
|
||||
elif type(json) == list:
|
||||
elif type(json) is list:
|
||||
return [substitute_uuids(element, symtab) for element in json]
|
||||
elif type(json) == dict:
|
||||
elif type(json) is dict:
|
||||
d = {}
|
||||
for key, value in json.items():
|
||||
d[key] = substitute_uuids(value, symtab)
|
||||
@ -341,10 +341,10 @@ def parse_uuids(json, symtab):
|
||||
name = "#%d#" % len(symtab)
|
||||
sys.stderr.write("%s = %s\n" % (name, json))
|
||||
symtab[name] = json
|
||||
elif type(json) == list:
|
||||
elif type(json) is list:
|
||||
for element in json:
|
||||
parse_uuids(element, symtab)
|
||||
elif type(json) == dict:
|
||||
elif type(json) is dict:
|
||||
for value in json.values():
|
||||
parse_uuids(value, symtab)
|
||||
|
||||
@ -1049,14 +1049,14 @@ def main(argv):
|
||||
sys.exit(1)
|
||||
|
||||
func, n_args = commands[command_name]
|
||||
if type(n_args) == tuple:
|
||||
if type(n_args) is tuple:
|
||||
if len(args) < n_args[0]:
|
||||
sys.stderr.write("%s: \"%s\" requires at least %d arguments but "
|
||||
"only %d provided\n"
|
||||
% (ovs.util.PROGRAM_NAME, command_name,
|
||||
n_args[0], len(args)))
|
||||
sys.exit(1)
|
||||
elif type(n_args) == int:
|
||||
elif type(n_args) is int:
|
||||
if len(args) != n_args:
|
||||
sys.stderr.write("%s: \"%s\" requires %d arguments but %d "
|
||||
"provided\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user