Skip to content

Commit

Permalink
Merge pull request #2277 from sherlock-project/2275-PEP-561
Browse files Browse the repository at this point in the history
Comply with PEP 561
  • Loading branch information
ppfeister authored Nov 11, 2024
2 parents 557394d + a998ec3 commit 785346c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Empty file added sherlock_project/py.typed
Empty file.
11 changes: 6 additions & 5 deletions sherlock_project/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from argparse import ArgumentParser, RawDescriptionHelpFormatter
from json import loads as json_loads
from time import monotonic
from typing import Optional

import requests
from requests_futures.sessions import FuturesSession
Expand Down Expand Up @@ -167,14 +168,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: Optional[str] = None,
timeout: int = 60,
):
"""Run Sherlock Analysis.
Expand Down Expand Up @@ -474,7 +475,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}")
Expand Down

0 comments on commit 785346c

Please sign in to comment.