Source code for pyexlatex.presentation.beamer.overlay.offset


[docs]class Offset:
[docs] def __init__(self, offset: int): self.offset = offset
def __str__(self) -> str: return f'({self.offset})' if self.offset != 0 else ''