Source code for pyexlatex.resume.models.name

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


[docs]class Name(TextAreaMixin, SimpleItem): name = 'name'
[docs] def __init__(self, author: str): self.author = author super().__init__(self.name, self.author)