From b2ecbaec66a07e659db092ca3b253fbae8a498f2 Mon Sep 17 00:00:00 2001 From: Jimmy Fitzpatrick Date: Sat, 17 Jan 2026 22:42:03 +0000 Subject: [PATCH] fix: Remove missing import --- cli/src/spectre_cli/__main__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cli/src/spectre_cli/__main__.py b/cli/src/spectre_cli/__main__.py index 84c55c1..ccfa8f5 100644 --- a/cli/src/spectre_cli/__main__.py +++ b/cli/src/spectre_cli/__main__.py @@ -8,7 +8,6 @@ from spectre_cli.commands.create import create_typer from spectre_cli.commands.get import get_typer from spectre_cli.commands.delete import delete_typer from spectre_cli.commands.update import update_typer -from spectre_cli.commands.download import download_typer from spectre_cli.commands.test import test_typer from spectre_cli.commands.record import record_typer @@ -20,6 +19,5 @@ app.add_typer(create_typer, name="create") app.add_typer(get_typer, name="get") app.add_typer(delete_typer, name="delete") app.add_typer(update_typer, name="update") -app.add_typer(download_typer, name="download") app.add_typer(test_typer, name="test") app.add_typer(record_typer, name="record")