Fix tab missing name property
This commit is contained in:
parent
6bb188f970
commit
20976869e2
|
@ -126,6 +126,7 @@ class DocumentTab:
|
|||
A division of tags within a document.
|
||||
"""
|
||||
def __init__(self, name: str, tags: List[DocumentTag], options: TabOptions) -> None:
|
||||
self.name = name
|
||||
self.tags: List[DocumentTag] = tags
|
||||
self.options: TabOptions = options
|
||||
|
||||
|
|
Loading…
Reference in New Issue