Comply with PEP 561

This commit is contained in:
Paul Pfeister 2024-08-27 22:32:48 -04:00
parent 9e111a334b
commit 0d0335bca0
No known key found for this signature in database
GPG key ID: 70D33A96CBD7A994
2 changed files with 5 additions and 5 deletions

View file

View file

@ -167,14 +167,14 @@ def multiple_usernames(username):
def sherlock(
username,
site_data,
username: str,
site_data: dict,
query_notify: QueryNotify,
tor: bool = False,
unique_tor: bool = False,
dump_response: bool = False,
proxy=None,
timeout=60,
proxy: str = None,
timeout: int = 60,
):
"""Run Sherlock Analysis.
@ -474,7 +474,7 @@ def sherlock(
raise ValueError(
f"Unknown Error Type '{error_type}' for " f"site '{social_network}'"
)
if dump_response:
print("+++++++++++++++++++++")
print(f"TARGET NAME : {social_network}")