Removed trogon feature in favor of sqlite-util-tui

Refs #648, #545
This commit is contained in:
Simon Willison 2025-01-10 17:15:02 -08:00
commit 0aefbb634d
4 changed files with 1 additions and 37 deletions

View file

@ -35,11 +35,6 @@ from .utils import (
TypeTracker,
)
try:
import trogon # type: ignore
except ImportError:
trogon = None
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
@ -127,10 +122,6 @@ def cli():
pass
if trogon is not None:
cli = trogon.tui()(cli)
@cli.command()
@click.argument(
"path",