formatter.py: Fix a typo in LineType Enum

This commit is contained in:
gregorni 2023-09-27 17:14:18 +02:00
parent 720594549b
commit 134ddbb80f

View file

@ -41,7 +41,7 @@ class LineType(Enum):
BLOCK_OPEN = 1 BLOCK_OPEN = 1
BLOCK_CLOSE = 2 BLOCK_CLOSE = 2
CHILD_TYPE = 3 CHILD_TYPE = 3
COMMENT = 3 COMMENT = 4
class Format: class Format: