Skip to content

Commit 0a1c148

Browse files
authored
Update wifi hack by brutefore.py
Updated the comparison with literals using "!=" instead of "is not"
1 parent d11aaf4 commit 0a1c148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wifi hack by brutefore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def getwifi(wifilist, wificount):
7070
sorted(allwifilist, key=lambda st: st[1], reverse=True)
7171
time.sleep(1)
7272
n = 0
73-
if len(allwifilist) is not 0:
73+
if len(allwifilist) != 0:
7474
for item in allwifilist:
7575
if (item[0] not in ssidlist) & (item[0] not in wifilist):
7676
n = n + 1

0 commit comments

Comments
 (0)