Skip to content

Commit 4e1568f

Browse files
committed
for consistency, remove Finals that dont help mypyc
1 parent b5be389 commit 4e1568f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tomli/_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ def append_nest_to_list(self, key: Key) -> None:
310310

311311
class Output:
312312
def __init__(self) -> None:
313-
self.data: Final = NestedDict()
314-
self.flags: Final = Flags()
313+
self.data = NestedDict()
314+
self.flags = Flags()
315315

316316

317317
def skip_chars(src: str, pos: Pos, chars: Iterable[str]) -> Pos:

0 commit comments

Comments
 (0)