Skip to content

Commit 034516d

Browse files
committed
Fix __init__.py showing in applet list
1 parent 7a8907c commit 034516d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

userland/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
file = Path(__file__).resolve(strict=True)
77

8-
applets = (applet.stem for applet in Path(file.parent, "utilities").glob("*.py"))
8+
applets = (applet.stem for applet in Path(file.parent, "utilities").glob("[!_]*.py"))
99

1010

1111
def print_usage(prog_name: str) -> None:

0 commit comments

Comments
 (0)