From 20976869e2e0bf94bdd2ec3558ee15ad86099094 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 11 Feb 2021 00:19:30 -0800 Subject: [PATCH] Fix tab missing name property --- redstring/parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redstring/parser.py b/redstring/parser.py index 7a24e7d..40284ba 100644 --- a/redstring/parser.py +++ b/redstring/parser.py @@ -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