From dfdd6bf5332702c0e5fd66a2d976c662ebe67612 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 13 Mar 2025 16:02:52 -0700 Subject: [PATCH] style: Remove trailing whitespace in redact-cast.py --- scripts/redact-cast.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/redact-cast.py b/scripts/redact-cast.py index 78b495c34..d77a093db 100755 --- a/scripts/redact-cast.py +++ b/scripts/redact-cast.py @@ -20,12 +20,12 @@ def main(): with open(input_file, "r") as f: # First line is header header = f.readline().strip() - + # Parse header to extract terminal dimensions header_data = json.loads(header) width = header_data.get("width", 80) height = header_data.get("height", 24) - + # Initialize pyte screen and stream with dimensions from header screen = pyte.Screen(width, height) stream = pyte.Stream(screen)