1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
from typing import Dict, List import attr from trullo.trl_list import TrlList from trullo.trl_card import TrlCard @attr.s(auto_attribs=True) class TrlBoard: id: str shortcut: str lists: List[TrlList] cards: List[TrlCard] raw_data: Dict