mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 11:53:03 +00:00
Remove old version item
This commit is contained in:
parent
6d6e17c22f
commit
e3a4879fcd
1 changed files with 10 additions and 21 deletions
|
@ -17,28 +17,17 @@ from argparse import ArgumentParser, RawDescriptionHelpFormatter
|
||||||
from time import monotonic
|
from time import monotonic
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
from requests_futures.sessions import FuturesSession
|
||||||
|
from torrequest import TorRequest
|
||||||
|
|
||||||
# Removing __version__ here will trigger update message for users
|
from sherlock.__init__ import __longname__, __shortname__, __version__
|
||||||
# Do not remove until ready to trigger that message
|
from sherlock.result import QueryStatus
|
||||||
# When removed, also remove all the noqa: E402 comments for linting
|
from sherlock.result import QueryResult
|
||||||
__version__ = "0.14.4"
|
from sherlock.notify import QueryNotify
|
||||||
del __version__
|
from sherlock.notify import QueryNotifyPrint
|
||||||
|
from sherlock.sites import SitesInformation
|
||||||
from .__init__ import ( # noqa: E402
|
from colorama import init
|
||||||
__longname__,
|
from argparse import ArgumentTypeError
|
||||||
__shortname__,
|
|
||||||
__version__,
|
|
||||||
)
|
|
||||||
|
|
||||||
from requests_futures.sessions import FuturesSession # noqa: E402
|
|
||||||
from torrequest import TorRequest # noqa: E402
|
|
||||||
from sherlock.result import QueryStatus # noqa: E402
|
|
||||||
from sherlock.result import QueryResult # noqa: E402
|
|
||||||
from sherlock.notify import QueryNotify # noqa: E402
|
|
||||||
from sherlock.notify import QueryNotifyPrint # noqa: E402
|
|
||||||
from sherlock.sites import SitesInformation # noqa: E402
|
|
||||||
from colorama import init # noqa: E402
|
|
||||||
from argparse import ArgumentTypeError # noqa: E402
|
|
||||||
|
|
||||||
|
|
||||||
class SherlockFuturesSession(FuturesSession):
|
class SherlockFuturesSession(FuturesSession):
|
||||||
|
|
Loading…
Reference in a new issue