From c57a1616698660945bef3cab127c485712b37bf3 Mon Sep 17 00:00:00 2001 From: Mirochill <200482516+Mirochill@users.noreply.github.com> Date: Mon, 25 May 2026 19:46:16 +0200 Subject: [PATCH] Use click.Group for database CLI --- keg/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keg/cli.py b/keg/cli.py index 3aa4f58..590c3d4 100644 --- a/keg/cli.py +++ b/keg/cli.py @@ -172,7 +172,7 @@ def config_command(): click.echo(' {} = {}'.format(key, config[key])) -class DatabaseGroup(click.MultiCommand): +class DatabaseGroup(click.Group): def list_commands(self, ctx): return ['clear', 'init']