From f1b23cf53f13e577d229aafd9e5a6046d3af9809 Mon Sep 17 00:00:00 2001 From: Forest Belton Date: Thu, 1 Jul 2021 06:17:37 -0400 Subject: [PATCH] Remove debug print --- scripts/generate_map.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/generate_map.py b/scripts/generate_map.py index 94f0b6f..d4c8e62 100644 --- a/scripts/generate_map.py +++ b/scripts/generate_map.py @@ -55,7 +55,6 @@ def generate_coll_map( def format_bytes(data: bytes, width: int = 16) -> str: - print(f"formatting with width={width}") lines = [] for line_no in range(0, len(data), width): line = data[line_no : line_no + width]