Skip to content

Commit

Permalink
Switch to relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed May 16, 2024
1 parent fba6432 commit 9d6672f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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 sherlock.result import QueryStatus
from .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 sherlock.result import QueryStatus
from sherlock.result import QueryResult
from sherlock.notify import QueryNotifyPrint
from sherlock.sites import SitesInformation
from .result import QueryStatus
from .result import QueryResult
from .notify import QueryNotifyPrint
from .sites import SitesInformation
from colorama import init
from argparse import ArgumentTypeError

Expand Down

0 comments on commit 9d6672f

Please sign in to comment.