pyright error fixes. added autocomplete to some commands

This commit is contained in:
2026-05-25 18:42:34 +02:00
parent 1c11549811
commit 17fcf1a02c
2 changed files with 103 additions and 18 deletions
+1 -2
View File
@@ -2,14 +2,13 @@ from __future__ import annotations
import typer
from zshell.subcommands import shell, scheme, screenshot, wallpaper, record
app = typer.Typer()
app = typer.Typer(name="zshell-cli")
app.add_typer(shell.app, name="shell")
app.add_typer(scheme.app, name="scheme")
app.add_typer(screenshot.app, name="screenshot")
app.add_typer(wallpaper.app, name="wallpaper")
app.add_typer(record.app, name="record")
# app.add_typer(preset.app, name="preset")
def main() -> None: