From 6ce80a1eeae1ae9f079b76121e3b3336cdeab17f Mon Sep 17 00:00:00 2001 From: Ritchie Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sun, 4 Jan 2026 06:05:18 +0200 Subject: [PATCH] Patch for bug that called the 'Press ENTER to continue...' prompt, when we skip exporting response --- pyproject.toml | 2 +- src/octosuite/__init__.py | 2 +- src/octosuite/tui/menus.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7be7984..790b8dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "octosuite" -version = "4.0.0beta2" +version = "4.0.1beta2" description = "TUI-based toolkit for GitHub data analysis." readme = "README.md" license = "MIT" diff --git a/src/octosuite/__init__.py b/src/octosuite/__init__.py index 0fec0ed..4028570 100644 --- a/src/octosuite/__init__.py +++ b/src/octosuite/__init__.py @@ -1,2 +1,2 @@ __pkg__ = "octosuite" -__version__ = "4.0.0beta2" +__version__ = "4.0.1beta2" diff --git a/src/octosuite/tui/menus.py b/src/octosuite/tui/menus.py index 34f9950..efaf726 100644 --- a/src/octosuite/tui/menus.py +++ b/src/octosuite/tui/menus.py @@ -258,10 +258,10 @@ class BaseMenu: source=source, file_formats=file_formats, ) + + console.input(" Press [bold]ENTER[/bold] to continue ...") except KeyboardInterrupt: console.print("\nExport cancelled") - finally: - console.input(" Press [bold]ENTER[/bold] to continue ...") def navigation_handler(self, option: str, callback: t.Callable, *callback_args): """