11 lines
215 B
Python
11 lines
215 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class PyTeXFileType(Enum):
|
||
|
PyTeXSourceFile = 'PyTeXSourceFile'
|
||
|
TeXSourceFile = 'TeXSourceFile'
|
||
|
TeXOutputFile = 'TeXOutputFile'
|
||
|
TeXDocumentationFile = 'TeXDocumentationFile'
|