From 3dce63fd88fd8b53aafcba8be168e175c35f28f6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Orvisk=C3=BD?= <orvisky.tomas@centrum.cz>
Date: Sun, 28 Apr 2024 14:15:36 +0200
Subject: [PATCH] disabled parser debug mode

---
 main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.py b/main.py
index 9964015..5004c1c 100644
--- a/main.py
+++ b/main.py
@@ -16,7 +16,7 @@ class MainScene(ZoomedScene):
         self.camera.background_color = WHITE
         Text.set_default(font_size=16)
 
-        diagram = PUMLParser().parse_file(self.file)
+        diagram = PUMLParser(debug=False).parse_file(self.file)
         diagram.layout = DotLayout()
         diagram.apply_layout(self.scale_x, self.scale_y)
 
-- 
GitLab