From 2a57f85d5a6b40daafb872c49057371077ce9d23 Mon Sep 17 00:00:00 2001 From: Jake Ginesin Date: Thu, 12 Mar 2026 02:57:53 -0400 Subject: [PATCH] remove a print --- src/utility.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utility.py b/src/utility.py index 4448a80..0f13912 100644 --- a/src/utility.py +++ b/src/utility.py @@ -27,7 +27,6 @@ def parse_channels(model : str) -> dict(): data = re.search(r"\#define\s*([A-Za-z\_\-]+)\s*([0-9])", line) if data is None : continue if not data.group(1) or not data.group(2) : continue - print(data) define_mapping[data.group(1)] = int(data.group(2)) if line.startswith("chan"): # parsing regular channels