mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-07 22:31:40 +00:00
10 lines
190 B
Python
10 lines
190 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
||
|
class CT_Br(BaseOxmlElement):
|
||
|
type: Optional[str]
|
||
|
clear: Optional[str]
|
||
|
|
||
|
class CT_R(BaseOxmlElement): ...
|