Source code for fastpyxl.worksheet.drawing

# Copyright (c) 2010-2024 fastpyxl

from fastpyxl.typed_serialisable.base import Serialisable
from fastpyxl.typed_serialisable.fields import Field
from fastpyxl.xml.constants import REL_NS


[docs] class Drawing(Serialisable): tagname = "drawing" id: str | None = Field.attribute(expected_type=str, allow_none=True, namespace=REL_NS, default=None) def __init__(self, id=None): self.id = id