Skip to content

Commit

Permalink
Adjust imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed May 22, 2024
1 parent a4f2768 commit 87dc3cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sherlock/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
print(f"Sherlock requires Python 3.6+\nYou are using Python {python_version}, which is not supported by Sherlock.")
sys.exit(1)

import sherlock
from sherlock import sherlock
sherlock.main()
2 changes: 1 addition & 1 deletion sherlock/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This module defines the objects for notifying the caller about the
results of queries.
"""
from result import QueryStatus
from sherlock.result import QueryStatus
from colorama import Fore, Style
import webbrowser

Expand Down
8 changes: 4 additions & 4 deletions sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

from requests_futures.sessions import FuturesSession
from torrequest import TorRequest
from result import QueryStatus
from result import QueryResult
from notify import QueryNotifyPrint
from sites import SitesInformation
from sherlock.result import QueryStatus
from sherlock.result import QueryResult
from sherlock.notify import QueryNotifyPrint
from sherlock.sites import SitesInformation
from colorama import init
from argparse import ArgumentTypeError

Expand Down

0 comments on commit 87dc3cd

Please sign in to comment.