From 9d6672f63e64e79d56d55cb4f159d344052eccf3 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Wed, 15 May 2024 23:41:06 -0400 Subject: [PATCH] Switch to relative imports --- sherlock/notify.py | 2 +- sherlock/sherlock.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sherlock/notify.py b/sherlock/notify.py index c198fe620..6647a8841 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -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 diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index d48791942..adbe44e83 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -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