Fixes LGTM warning "Testing for None should use the 'is' operator."
Signed-off-by: Konstantin Kharlamov <[email protected]> --- config/fdi2iclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/fdi2iclass.py b/config/fdi2iclass.py index 897444068..36ef3801b 100755 --- a/config/fdi2iclass.py +++ b/config/fdi2iclass.py @@ -150,7 +150,7 @@ def parse_all_matches(node): # walk up to a parent match node node = node.parentNode - if node == None or not is_match_node(node): + if node is None or not is_match_node(node): break # leave if there other options at this level -- 2.21.0 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: https://lists.x.org/mailman/listinfo/xorg-devel
