Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/sherlock/commit/64fecce6a301bf4b5a84603670765b8d9958f733 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from dannysepler/dsepler/clean-import

Clean out unused imports
pull/623/head
Christopher Kent Hoadley 5 years ago committed by GitHub
commit 64fecce6a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,16 +8,12 @@ networks.
"""
import csv
import json
import os
import platform
import re
import sys
from argparse import ArgumentParser, RawDescriptionHelpFormatter
from time import monotonic
from concurrent.futures import ThreadPoolExecutor
from time import time
import webbrowser
import requests
@ -25,7 +21,6 @@ from requests_futures.sessions import FuturesSession
from torrequest import TorRequest
from result import QueryStatus
from result import QueryResult
from notify import QueryNotify
from notify import QueryNotifyPrint
from sites import SitesInformation

@ -3,7 +3,6 @@
This module supports storing information about web sites.
This is the raw data that will be used to search for usernames.
"""
import logging
import os
import json
import operator

@ -2,7 +2,6 @@
This module contains various utilities for running tests.
"""
import json
import os
import os.path
import unittest

Loading…
Cancel
Save