mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 08:00:13 +01:00
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:
parent
039b8fe89e
commit
dd04dd0505
7 changed files with 96 additions and 277 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue