PEP8 fix shodan module

This commit is contained in:
L1ghtn1ng
2019-02-24 23:44:02 +00:00
parent b6f079416a
commit aba655f5b0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ from shodan import exception
from shodan import Shodan
class search_shodan:
class SearchShodan:
def __init__(self):
self.key = Core.shodan_key()
+1 -1
View File
@@ -817,7 +817,7 @@ def start():
try:
for ip in host_ip:
print(('\tSearching for ' + ip))
shodan = shodansearch.search_shodan()
shodan = shodansearch.SearchShodan()
rowdata = shodan.search_ip(ip)
time.sleep(2)
tab.add_row(rowdata)