Fix tab missing name property

This commit is contained in:
Tim Van Baak 2021-02-11 00:19:30 -08:00
parent 6bb188f970
commit 20976869e2
1 changed files with 1 additions and 0 deletions

View File

@ -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