Use 'is False' instead of '== False'
This commit is contained in:
parent
f46671a85f
commit
62f79beb90
3 changed files with 4 additions and 4 deletions
|
@ -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):
|
||||
|
|
|
@ -105,12 +105,12 @@ class Module(bumblebee.engine.Module):
|
|||
if "<"+device+">" in line:
|
||||
found = True
|
||||
continue
|
||||
if found == False:
|
||||
if found is False:
|
||||
continue
|
||||
for pattern in self._patterns:
|
||||
if not pattern["expr"] in line:
|
||||
continue
|
||||
if pattern["callback"](line) == False and found == True:
|
||||
if pattern["callback"](line) is False and found == True:
|
||||
return
|
||||
except Exception:
|
||||
self._failed = True
|
||||
|
|
|
@ -150,7 +150,7 @@ class Module(bumblebee.engine.Module):
|
|||
band=bytefmt(nread)))
|
||||
|
||||
for widget in widgets:
|
||||
if widget.get("visited") == False:
|
||||
if widget.get("visited") is False:
|
||||
widgets.remove(widget)
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in a new issue