Source code for pyexlatex.letter.enclosures

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


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