mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 19:33:02 +00:00
Fix implicit optional (PEP 484)
Co-authored-by: GuardianWang <31812793+GuardianWang@users.noreply.github.com>
This commit is contained in:
parent
0d0335bca0
commit
4660afb7d8
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ def sherlock(
|
|||
tor: bool = False,
|
||||
unique_tor: bool = False,
|
||||
dump_response: bool = False,
|
||||
proxy: str = None,
|
||||
proxy: Optional[str] = None,
|
||||
timeout: int = 60,
|
||||
):
|
||||
"""Run Sherlock Analysis.
|
||||
|
|
Loading…
Reference in a new issue