fix typo
This commit is contained in:
parent
11c4c432e4
commit
a22c430555
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@ from __future__ import annotations
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
|
from PyTeX.logger import logger
|
||||||
|
|
||||||
|
|
||||||
class FormatterMode(Enum):
|
class FormatterMode(Enum):
|
||||||
normal = 0
|
normal = 0
|
||||||
|
@ -79,7 +81,7 @@ class TeXFlavour(Enum):
|
||||||
'TeX': TeXFlavour.TeX,
|
'TeX': TeXFlavour.TeX,
|
||||||
'LaTeX2e': TeXFlavour.LaTeX2e,
|
'LaTeX2e': TeXFlavour.LaTeX2e,
|
||||||
'LaTeX2': TeXFlavour.LaTeX2e,
|
'LaTeX2': TeXFlavour.LaTeX2e,
|
||||||
'LateX3': TeXFlavour.LaTeX3
|
'LaTeX3': TeXFlavour.LaTeX3,
|
||||||
}
|
}
|
||||||
if flavour not in switcher.keys():
|
if flavour not in switcher.keys():
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
Loading…
Reference in a new issue