Use 'is False' instead of '== False'

This commit is contained in:
Frederic Junod 2018-06-04 14:53:01 +02:00
parent f46671a85f
commit 62f79beb90
3 changed files with 4 additions and 4 deletions

View file

@ -100,7 +100,7 @@ class Module(bumblebee.engine.Module):
widget.set("visited", True)
for widget in widgets:
if widget.get("visited") == False:
if widget.get("visited") is False:
widgets.remove(widget)
def get_ssid(self, intf):