fixed debug
This commit is contained in:
parent
61a5da2bfe
commit
cf0cc6b2b9
@ -6,10 +6,13 @@ from ..objects import DatabaseObject, Source
|
||||
from ..utils.enums.source import SourcePages
|
||||
from ..utils.support_classes import Query, DownloadResult
|
||||
from ..utils.exception.download import UrlNotFoundException
|
||||
from ..utils.shared import DEBUG_PAGES
|
||||
|
||||
from ..pages import Page, EncyclopaediaMetallum, Musify, YouTube, YoutubeMusic, INDEPENDENT_DB_OBJECTS
|
||||
|
||||
DEBUGGING_PAGE = YoutubeMusic
|
||||
if DEBUG_PAGES:
|
||||
DEBUGGING_PAGE = YoutubeMusic
|
||||
|
||||
|
||||
ALL_PAGES: Set[Type[Page]] = {
|
||||
EncyclopaediaMetallum,
|
||||
|
@ -2,8 +2,10 @@ import random
|
||||
|
||||
from .config import main_settings
|
||||
|
||||
DEBUG = True
|
||||
DEBUG = False
|
||||
DEBUG_YOUTUBE_INITIALIZING = DEBUG and False
|
||||
DEBUG_PAGES = DEBUG and False
|
||||
|
||||
if DEBUG:
|
||||
print("DEBUG ACTIVE")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user