From 98da904a0667e08a4b8760bc5546b8e04e753ed7 Mon Sep 17 00:00:00 2001 From: Sameer Kadam Date: Sun, 31 May 2026 15:59:29 +0530 Subject: [PATCH] test(cli): remove unused variable in reason list json test Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/test_cli_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_cli_commands.py b/tests/test_cli_commands.py index f375479e..d5e13be5 100644 --- a/tests/test_cli_commands.py +++ b/tests/test_cli_commands.py @@ -645,7 +645,6 @@ class TestReason: assert "rete" in result.output def test_list_json(self, runner): - result = runner.invoke(main, ["reason", "list", "--json"]) # list command has no --json flag, output via cli_ctx.json_output result2 = runner.invoke(main, ["--json", "reason", "list"]) _ok(result2)