mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-27 03:42:49 +00:00
Merge branch 'fix-build' of https://github.com/page-down/kitty
This commit is contained in:
commit
99463ef492
1 changed files with 1 additions and 1 deletions
|
|
@ -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 != 'tui':
|
||||
if '__' not in name and '.' not in name and 'main.py' in list_kitty_resources(f'kittens.{name}'):
|
||||
ans.append(name)
|
||||
return frozenset(ans)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue