[PATCH 7/9] fdi2iclass.py: use "is" to compare with None
Konstantin Kharlamov
Hi-Angel at yandex.ru
Sat Mar 23 23:52:01 UTC 2019
Fixes LGTM warning "Testing for None should use the 'is' operator."
Signed-off-by: Konstantin Kharlamov <Hi-Angel at yandex.ru>
---
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
More information about the xorg-devel
mailing list