From 12c1b0cbdfb795349da5ec4fbe9d184032ed4a11 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 20 Jul 2025 21:45:36 +0530 Subject: [PATCH] remove leftover debug prints --- gen/wcwidth.py | 1 - kitty_tests/completion.py | 1 - 2 files changed, 2 deletions(-) diff --git a/gen/wcwidth.py b/gen/wcwidth.py index 936b4ef60..0087403cb 100755 --- a/gen/wcwidth.py +++ b/gen/wcwidth.py @@ -151,7 +151,6 @@ def parse_ucd() -> None: category, sep, name = name.rpartition('-') name = name or category name = name.replace('_', ' ') - print(11111111, name) if name and codepoint not in name_map: name_map[codepoint] = name.upper() for word in name.lower().split(): diff --git a/kitty_tests/completion.py b/kitty_tests/completion.py index d0d40e2fa..89e6d6147 100644 --- a/kitty_tests/completion.py +++ b/kitty_tests/completion.py @@ -85,7 +85,6 @@ def completion(self: TestCompletion, tdir: str): env['PATH'] = os.path.join(tdir, 'bin') env['HOME'] = os.path.join(tdir, 'sub') env['KITTY_CONFIG_DIRECTORY'] = os.path.join(tdir, 'sub') - print(1111111, all_argv) cp = subprocess.run( [kitten(), '__complete__', 'json'], check=True, stdout=subprocess.PIPE, cwd=tdir, input=json.dumps(all_argv).encode(), env=env