Updated script that can be controled by Nodejs web app
This commit is contained in:
21
lib/python3.13/site-packages/openpyxl/comments/author.py
Normal file
21
lib/python3.13/site-packages/openpyxl/comments/author.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Copyright (c) 2010-2024 openpyxl
|
||||
|
||||
|
||||
from openpyxl.descriptors.serialisable import Serialisable
|
||||
from openpyxl.descriptors import (
|
||||
Sequence,
|
||||
Alias
|
||||
)
|
||||
|
||||
|
||||
class AuthorList(Serialisable):
|
||||
|
||||
tagname = "authors"
|
||||
|
||||
author = Sequence(expected_type=str)
|
||||
authors = Alias("author")
|
||||
|
||||
def __init__(self,
|
||||
author=(),
|
||||
):
|
||||
self.author = author
|
Reference in New Issue
Block a user