Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/openpyxl/comments/author.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
4from openpyxl.descriptors.serialisable import Serialisable
5from openpyxl.descriptors import (
6 Sequence,
7 Alias
8)
11class AuthorList(Serialisable):
13 tagname = "authors"
15 author = Sequence(expected_type=str)
16 authors = Alias("author")
18 def __init__(self,
19 author=(),
20 ):
21 self.author = author