Comment out debug output

This commit is contained in:
D. Berge
2025-08-07 10:52:13 +02:00
parent 8399782409
commit 8f87df1e2f

View File

@@ -23,6 +23,7 @@ transform = {
} }
def parse_line (line, fields, fixed = None): def parse_line (line, fields, fixed = None):
# print("parse_line", line, fields, fixed)
data = dict() data = dict()
if fixed: if fixed:
@@ -51,6 +52,7 @@ def parse_line (line, fields, fixed = None):
data[key] = value data[key] = value
# print("parse_line data =", data)
return data return data