Fix logic error print menu

This commit is contained in:
Roland Thomas Jr 2025-05-01 22:46:41 -04:00
parent f6316599d4
commit 69b629eb08
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
3 changed files with 3 additions and 3 deletions

View File

@ -911,7 +911,7 @@ class Falyx:
while True:
if callable(self.render_menu):
self.render_menu(self)
elif isinstance(self.render_menu, str):
else:
self.console.print(self.table, justify="center")
try:
task = asyncio.create_task(self.process_command())

View File

@ -1 +1 @@
__version__ = "0.1.9"
__version__ = "0.1.10"

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "falyx"
version = "0.1.9"
version = "0.1.10"
description = "Reliable and introspectable async CLI action framework."
authors = ["Roland Thomas Jr <roland@rtj.dev>"]
license = "MIT"