From 134ddbb80f5d47ccf458820505d0ff594600ad7d Mon Sep 17 00:00:00 2001 From: gregorni Date: Wed, 27 Sep 2023 17:14:18 +0200 Subject: [PATCH] formatter.py: Fix a typo in LineType Enum --- blueprintcompiler/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprintcompiler/formatter.py b/blueprintcompiler/formatter.py index 6209e7c..ae6660e 100644 --- a/blueprintcompiler/formatter.py +++ b/blueprintcompiler/formatter.py @@ -41,7 +41,7 @@ class LineType(Enum): BLOCK_OPEN = 1 BLOCK_CLOSE = 2 CHILD_TYPE = 3 - COMMENT = 3 + COMMENT = 4 class Format: