forked from zaclys/searxng
[fix] correct imported modules
This commit is contained in:
parent
dff879d07d
commit
3f60bb470a
|
@ -17,10 +17,10 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
||||||
|
|
||||||
from hashlib import sha256
|
from hashlib import sha256
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
from os import makedirs, remove
|
from os import listdir, makedirs, remove
|
||||||
from os.path import abspath, basename, dirname, exists, isdir, join
|
from os.path import abspath, basename, dirname, exists, join
|
||||||
from shutil import copyfile
|
from shutil import copyfile
|
||||||
from sys import exit, version_info
|
from sys import version_info
|
||||||
from traceback import print_exc
|
from traceback import print_exc
|
||||||
|
|
||||||
from searx import logger, settings, static_path
|
from searx import logger, settings, static_path
|
||||||
|
|
Loading…
Reference in New Issue