drawing.py 314 B

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