Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/openpyxl/drawing/relation.py : 89%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (c) 2010-2020 openpyxl
3from openpyxl.xml.constants import CHART_NS
5from openpyxl.descriptors.serialisable import Serialisable
6from openpyxl.descriptors.excel import Relation
9class ChartRelation(Serialisable):
11 tagname = "chart"
12 namespace = CHART_NS
14 id = Relation()
16 def __init__(self, id):
17 self.id = id