Revert "Massively overhauled the tagging process, refactored code to improve general effeciciency, implemented parallel processing to reduce total runtime"

This reverts commit 27ee13fb54.
This commit is contained in:
mwisnowski 2025-08-15 10:04:19 -07:00
parent 039b8fe89e
commit dd04dd0505
7 changed files with 96 additions and 277 deletions

View file

@ -2,14 +2,16 @@
from __future__ import annotations
from typing import Any, List, Tuple, Union
import logging
import os
from typing import Any, List, Optional, Tuple, Union
import inquirer
import inquirer.prompt
from settings import (
COLOR_ABRV
COLORS, COLOR_ABRV
)
from deck_builder.builder_constants import (DEFAULT_MAX_CARD_PRICE,
DEFAULT_THEME_TAGS, MONO_COLOR_MAP,
DEFAULT_MAX_DECK_PRICE, DEFAULT_THEME_TAGS, MONO_COLOR_MAP,
DUAL_COLOR_MAP, TRI_COLOR_MAP, OTHER_COLOR_MAP
)
@ -24,7 +26,7 @@ from exceptions import (
InvalidNumberError,
InvalidQuestionTypeError,
MaxAttemptsError,
PriceError,
PriceLimitError,
PriceValidationError
)