mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-08 06:41:21 +00:00
8 lines
184 B
Python
8 lines
184 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
||
|
class CT_SectPr(BaseOxmlElement):
|
||
|
@property
|
||
|
def preceding_sectPr(self) -> Optional[CT_SectPr]: ...
|