Coverage for /var/srv/projects/api.amasfac.comuna18.com/tmp/venv/lib/python3.9/site-packages/openpyxl/drawing/relation.py: 91%

9 statements  

« prev     ^ index     » next       coverage.py v6.4.4, created at 2023-07-17 14:22 -0600

1# Copyright (c) 2010-2022 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