mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-13 12:09:35 +03:00
Use importlib.resources to enumerate kitten names
This commit is contained in:
parent
d2a16bc8e8
commit
55e7f69768
@ -123,14 +123,12 @@ def run_kitten(kitten: str, run_name: str = '__main__') -> None:
|
||||
|
||||
@run_once
|
||||
def all_kitten_names() -> FrozenSet[str]:
|
||||
n = []
|
||||
import glob
|
||||
base = os.path.dirname(os.path.abspath(__file__))
|
||||
for x in glob.glob(os.path.join(base, '*', '__init__.py')):
|
||||
q = os.path.basename(os.path.dirname(x))
|
||||
if q != 'tui':
|
||||
n.append(q)
|
||||
return frozenset(n)
|
||||
from importlib.resources import contents
|
||||
ans = []
|
||||
for name in contents('kittens'):
|
||||
if '__' not in name and name != 'tui':
|
||||
ans.append(name)
|
||||
return frozenset(ans)
|
||||
|
||||
|
||||
def list_kittens() -> None:
|
||||
|
Loading…
Reference in New Issue
Block a user