brief-extractor/backend/venv/lib/python3.10/site-packages/docx/oxml/drawing.py
2026-03-06 18:42:46 +00:00

11 lines
397 B
Python
Executable file

"""Custom element-classes for DrawingML-related elements like `<w:drawing>`.
For legacy reasons, many DrawingML-related elements are in `docx.oxml.shape`. Expect
those to move over here as we have reason to touch them.
"""
from docx.oxml.xmlchemy import BaseOxmlElement
class CT_Drawing(BaseOxmlElement):
"""`<w:drawing>` element, containing a DrawingML object like a picture or chart."""