Source code for pyexlatex.models.credits.institution.inst

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


[docs]class Inst(SimpleItem): name = 'inst'
[docs] def __init__(self, num: int): self.num = num super().__init__(self.name, str(num))