Fix logic error print menu
This commit is contained in:
parent
f6316599d4
commit
69b629eb08
|
@ -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())
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.9"
|
||||
__version__ = "0.1.10"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue