Skip to content

Commit 12c1b0c

Browse files
committed
remove leftover debug prints
1 parent b980eb2 commit 12c1b0c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

gen/wcwidth.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ def add_word(w: str, c: int) -> None:
151151
category, sep, name = name.rpartition('-')
152152
name = name or category
153153
name = name.replace('_', ' ')
154-
print(11111111, name)
155154
if name and codepoint not in name_map:
156155
name_map[codepoint] = name.upper()
157156
for word in name.lower().split():

kitty_tests/completion.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def run_tool():
8585
env['PATH'] = os.path.join(tdir, 'bin')
8686
env['HOME'] = os.path.join(tdir, 'sub')
8787
env['KITTY_CONFIG_DIRECTORY'] = os.path.join(tdir, 'sub')
88-
print(1111111, all_argv)
8988
cp = subprocess.run(
9089
[kitten(), '__complete__', 'json'],
9190
check=True, stdout=subprocess.PIPE, cwd=tdir, input=json.dumps(all_argv).encode(), env=env

0 commit comments

Comments
 (0)