Source code for pyexlatex.presentation.beamer.frame.title

from typing import Optional
from pyexlatex.models.item import SimpleItem


[docs]class FrameTitle(SimpleItem): name = 'frametitle'
[docs] def __init__(self, title: str, modifiers: Optional[str] = None): self.title = title super().__init__(self.name, title, modifiers)