We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc0b86 commit 2d50d14Copy full SHA for 2d50d14
task.py
@@ -1,6 +1,4 @@
1
import click
2
-from analyze.cli import analyze_group
3
-from tune.cli import tune_group
4
5
from benchmark.cli import benchmark_group
6
from dbms.cli import dbms_group
@@ -28,7 +26,5 @@ def task(ctx: click.Context) -> None:
28
26
if __name__ == "__main__":
29
27
task.add_command(benchmark_group)
30
task.add_command(manage_group)
31
- task.add_command(analyze_group)
32
task.add_command(dbms_group)
33
- task.add_command(tune_group)
34
task()
0 commit comments