Compare commits

..

4 Commits

Author SHA1 Message Date
Ritchie Mwewa
4f207d5343 Merge pull request #26 from bellingcat/4.0/beta
4.0/beta
2026-01-04 06:07:56 +02:00
Ritchie Mwewa
9de7bf1bfc Merge branch 'master' into 4.0/beta 2026-01-04 06:07:45 +02:00
Ritchie Mwewa
8d0695324a Merge branch '4.0/beta' of github.com:bellingcat/octosuite into 4.0/beta 2026-01-04 06:06:29 +02:00
Ritchie Mwewa
6ce80a1eea Patch for bug that called the 'Press ENTER to continue...' prompt, when we skip exporting response 2026-01-04 06:05:18 +02:00
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):
"""