drawing.py 275 B

1234567891011121314
  1. # Copyright (c) 2010-2024 openpyxl
  2. from openpyxl.descriptors.serialisable import Serialisable
  3. from openpyxl.descriptors.excel import Relation
  4. class Drawing(Serialisable):
  5. tagname = "drawing"
  6. id = Relation()
  7. def __init__(self, id=None):
  8. self.id = id