fix api_example issue and update lgtm.yml file

This commit is contained in:
L1ghtn1ng 2021-07-01 22:48:08 +01:00
parent ff3178475b
commit 6d9040f591
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,7 @@
queries:
- exclude: py/import-and-import-from
- exclude: py/polluting-import
- exclude: py/member-test-non-container
extraction:
python:

View file

@ -75,7 +75,7 @@ async def main():
print(f'\n[*] LinkedIn Links found: {len(linkedin_links_tracker)}')
linkedin_links_tracker = list(sorted(set(linkedin_links_tracker)))
print('---------------------')
for link in linkedin_people_list_tracker:
for link in linkedin_links_tracker:
print(link)
length_urls = len(trello_urls)
@ -94,7 +94,6 @@ async def main():
# use netaddr as the list may contain ipv4 and ipv6 addresses
ip_list = sorted([netaddr.IPAddress(ip.strip()) for ip in set(ips)])
print('\n'.join(map(str, ip_list)))
ip_list = list(ip_list)
if len(emails) == 0:
print('\n[*] No emails found.')