Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/openpyxl/drawing/relation.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.3.3, created at 2023-12-20 06:34 +0000

1# Copyright (c) 2010-2023 openpyxl 

2 

3from openpyxl.xml.constants import CHART_NS 

4 

5from openpyxl.descriptors.serialisable import Serialisable 

6from openpyxl.descriptors.excel import Relation 

7 

8 

9class ChartRelation(Serialisable): 

10 

11 tagname = "chart" 

12 namespace = CHART_NS 

13 

14 id = Relation() 

15 

16 def __init__(self, id): 

17 self.id = id