gotta fix fucking imports

This commit is contained in:
Lars Noack
2022-11-22 14:25:01 +01:00
parent ef362dd2a4
commit f45afcb2ce
9 changed files with 38 additions and 31 deletions

View File

@@ -3,7 +3,6 @@ import logging
import tempfile
import os
from ..database.database import Database
TEMP_FOLDER = "music-downloader"
LOG_FILE = "download_logs.log"
@@ -42,13 +41,6 @@ NOT_A_GENRE = ".", "..", "misc_scripts", "Music", "script", ".git", ".idea"
MUSIC_DIR = os.path.expanduser('~/Music')
database = Database(os.path.join(temp_dir, DATABASE_FILE),
os.path.join(temp_dir, DATABASE_STRUCTURE_FILE),
DATABASE_STRUCTURE_FALLBACK,
DATABASE_LOGGER,
reset_anyways=False)
TOR = False
proxies = {
'http': 'socks5h://127.0.0.1:9150',