Forgot to exclude modules
This commit is contained in:
parent
55e7f69768
commit
4cf73204a2
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ def all_kitten_names() -> FrozenSet[str]:
|
|||
from importlib.resources import contents
|
||||
ans = []
|
||||
for name in contents('kittens'):
|
||||
if '__' not in name and name != 'tui':
|
||||
if '__' not in name and '.' not in name and name != 'tui':
|
||||
ans.append(name)
|
||||
return frozenset(ans)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue