Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/openpyxl/workbook/external_reference.py : 88%

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.descriptors.serialisable import Serialisable
4from openpyxl.descriptors import (
5 Sequence
6)
7from openpyxl.descriptors.excel import (
8 Relation,
9)
11class ExternalReference(Serialisable):
13 tagname = "externalReference"
15 id = Relation()
17 def __init__(self, id):
18 self.id = id