Source code for pyexlatex.letter.opening

from pyexlatex.models.item import SimpleItem
from pyexlatex.models.section.base import TextAreaMixin
from pyexlatex.typing import PyexlatexItems


[docs]class Opening(TextAreaMixin, SimpleItem): name = 'opening'
[docs] def __init__(self, opening: PyexlatexItems): self.opening = opening super().__init__(self.name, self.opening)