9 lines
167 B
Python
9 lines
167 B
Python
from dataclasses import dataclass
|
|
from docx.shared import Parented, Length
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RenderedInfo:
|
|
docx_element: Parented
|
|
height: Length
|