mirror of
https://github.com/sherlock-project/sherlock
synced 2025-02-16 12:38:27 +00:00
Switch to snake_case
This commit is contained in:
parent
80e61cd3be
commit
f1d4a841eb
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ networks.
|
|||
"""
|
||||
|
||||
# This variable is only used to check for ImportErrors induced by users running as script rather than as module or package
|
||||
importErrTestVar = None
|
||||
import_error_test_var = None
|
||||
|
||||
__shortname__ = "Sherlock"
|
||||
__longname__ = "Sherlock: Find Usernames Across Social Networks"
|
||||
|
|
|
@ -10,7 +10,7 @@ networks.
|
|||
import sys
|
||||
|
||||
try:
|
||||
from sherlock.__init__ import importErrTestVar # noqa: F401
|
||||
from sherlock.__init__ import import_error_test_var # noqa: F401
|
||||
except ImportError:
|
||||
print("Did you run Sherlock with `python3 sherlock/sherlock.py ...`?")
|
||||
print("This is an outdated method. Please see https://sherlockproject.xyz/installation for up to date instructions.")
|
||||
|
|
Loading…
Add table
Reference in a new issue