remove leftover debug prints
This commit is contained in:
parent
b980eb2726
commit
12c1b0cbdf
2 changed files with 0 additions and 2 deletions
|
|
@ -151,7 +151,6 @@ def add_word(w: str, c: int) -> None:
|
||||||
category, sep, name = name.rpartition('-')
|
category, sep, name = name.rpartition('-')
|
||||||
name = name or category
|
name = name or category
|
||||||
name = name.replace('_', ' ')
|
name = name.replace('_', ' ')
|
||||||
print(11111111, name)
|
|
||||||
if name and codepoint not in name_map:
|
if name and codepoint not in name_map:
|
||||||
name_map[codepoint] = name.upper()
|
name_map[codepoint] = name.upper()
|
||||||
for word in name.lower().split():
|
for word in name.lower().split():
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,6 @@ def run_tool():
|
||||||
env['PATH'] = os.path.join(tdir, 'bin')
|
env['PATH'] = os.path.join(tdir, 'bin')
|
||||||
env['HOME'] = os.path.join(tdir, 'sub')
|
env['HOME'] = os.path.join(tdir, 'sub')
|
||||||
env['KITTY_CONFIG_DIRECTORY'] = os.path.join(tdir, 'sub')
|
env['KITTY_CONFIG_DIRECTORY'] = os.path.join(tdir, 'sub')
|
||||||
print(1111111, all_argv)
|
|
||||||
cp = subprocess.run(
|
cp = subprocess.run(
|
||||||
[kitten(), '__complete__', 'json'],
|
[kitten(), '__complete__', 'json'],
|
||||||
check=True, stdout=subprocess.PIPE, cwd=tdir, input=json.dumps(all_argv).encode(), env=env
|
check=True, stdout=subprocess.PIPE, cwd=tdir, input=json.dumps(all_argv).encode(), env=env
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue