Dont require setting seq when creating Author objects

This commit is contained in:
Kovid Goyal 2021-11-12 08:01:42 +05:30
parent 44283cdb79
commit 7003e9c466
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -425,7 +425,7 @@ def set_languages(root, prefixes, refines, languages):
# Creator/Contributor {{{ # Creator/Contributor {{{
Author = namedtuple('Author', 'name sort seq') Author = namedtuple('Author', 'name sort seq', defaults=(0,))
def is_relators_role(props, q): def is_relators_role(props, q):