From fc08064405aa8c3ed060aa73102c6faa074c21f2 Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Mon, 13 Apr 2026 23:50:20 -0400 Subject: [PATCH 1/3] Fix for Empty except Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- recline/repl/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recline/repl/shell.py b/recline/repl/shell.py index afd5992..8bb84fa 100644 --- a/recline/repl/shell.py +++ b/recline/repl/shell.py @@ -206,6 +206,7 @@ def signal_handler(signum, frame): try: _run_command(commands.START_COMMAND, argv[1:]) except CommandBackgrounded: + # START_COMMAND may intentionally run in background; no foreground follow-up needed here. pass From 8825864cc74337adcbdb602cfda8f7462c5cb28c Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Mon, 13 Apr 2026 23:51:13 -0400 Subject: [PATCH 2/3] Fix for Empty except Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- recline/repl/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recline/repl/shell.py b/recline/repl/shell.py index 8bb84fa..25b038c 100644 --- a/recline/repl/shell.py +++ b/recline/repl/shell.py @@ -206,6 +206,7 @@ def signal_handler(signum, frame): try: _run_command(commands.START_COMMAND, argv[1:]) except CommandBackgrounded: + # START_COMMAND may intentionally run in background; no foreground follow-up needed here. # START_COMMAND may intentionally run in background; no foreground follow-up needed here. pass From 21ebcbb17b7d4a164207087cd5845f86f0905092 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 03:54:19 +0000 Subject: [PATCH 3/3] Fix line too long and duplicate comment in _setup_repl Agent-Logs-Url: https://github.com/NetApp/recline/sessions/e3a2ce38-ca0f-4e27-845f-8e4a1ba87a1e Co-authored-by: RobertBlackhart <5414318+RobertBlackhart@users.noreply.github.com> --- recline/repl/shell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recline/repl/shell.py b/recline/repl/shell.py index 25b038c..f1f2bac 100644 --- a/recline/repl/shell.py +++ b/recline/repl/shell.py @@ -206,8 +206,7 @@ def signal_handler(signum, frame): try: _run_command(commands.START_COMMAND, argv[1:]) except CommandBackgrounded: - # START_COMMAND may intentionally run in background; no foreground follow-up needed here. - # START_COMMAND may intentionally run in background; no foreground follow-up needed here. + # START_COMMAND may run in the background intentionally; nothing more to do here. pass