Clean up mouse-demo kitten

Fixes #6738
This commit is contained in:
Kovid Goyal
2023-10-21 07:55:23 +05:30
parent c9a95cacd9
commit 7292d1c9df
4 changed files with 5 additions and 5 deletions

View File

@@ -133,7 +133,7 @@ def run_kitten(kitten: str, run_name: str = '__main__') -> None:
def all_kitten_names() -> FrozenSet[str]:
ans = []
for name in list_kitty_resources('kittens'):
if '__' not in name and '.' not in name and name not in ('tui', 'mouse_demo'):
if '__' not in name and '.' not in name and name != 'tui':
ans.append(name)
return frozenset(ans)