This commit is contained in:
Maximilian Keßler 2022-02-17 22:31:29 +01:00
parent 11c4c432e4
commit a22c430555

View file

@ -2,6 +2,8 @@ from __future__ import annotations
from enum import Enum
from typing import Optional
from PyTeX.logger import logger
class FormatterMode(Enum):
normal = 0
@ -79,7 +81,7 @@ class TeXFlavour(Enum):
'TeX': TeXFlavour.TeX,
'LaTeX2e': TeXFlavour.LaTeX2e,
'LaTeX2': TeXFlavour.LaTeX2e,
'LateX3': TeXFlavour.LaTeX3
'LaTeX3': TeXFlavour.LaTeX3,
}
if flavour not in switcher.keys():
raise NotImplementedError