mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 16:10:12 +01:00
feat(combos): add Combos & Synergies detection, chip-style UI with dual hover; JSON persistence and headless honoring; stage ordering; docs and tests; bump to v2.2.1
This commit is contained in:
parent
cc16c6f13a
commit
6c48fb3437
38 changed files with 2042 additions and 131 deletions
|
|
@ -1,7 +1,9 @@
|
|||
from .builder import DeckBuilder
|
||||
from .builder_utils import *
|
||||
from .builder_constants import *
|
||||
__all__ = ['DeckBuilder']
|
||||
|
||||
__all__ = [
|
||||
'DeckBuilder',
|
||||
]
|
||||
|
||||
def __getattr__(name):
|
||||
# Lazy-load DeckBuilder to avoid side effects during import of submodules
|
||||
if name == 'DeckBuilder':
|
||||
from .builder import DeckBuilder # type: ignore
|
||||
return DeckBuilder
|
||||
raise AttributeError(name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue