Patch for bug that called the 'Press ENTER to continue...' prompt, when we skip exporting response

This commit is contained in:
Ritchie Mwewa
2026-01-04 06:05:18 +02:00
parent 0c06b95d18
commit 6ce80a1eea
3 changed files with 4 additions and 4 deletions

View File

@@ -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"

View File

@@ -1,2 +1,2 @@
__pkg__ = "octosuite"
__version__ = "4.0.0beta2"
__version__ = "4.0.1beta2"

View File

@@ -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):
"""