Fix logic error print menu
This commit is contained in:
parent
f6316599d4
commit
69b629eb08
|
@ -911,7 +911,7 @@ class Falyx:
|
||||||
while True:
|
while True:
|
||||||
if callable(self.render_menu):
|
if callable(self.render_menu):
|
||||||
self.render_menu(self)
|
self.render_menu(self)
|
||||||
elif isinstance(self.render_menu, str):
|
else:
|
||||||
self.console.print(self.table, justify="center")
|
self.console.print(self.table, justify="center")
|
||||||
try:
|
try:
|
||||||
task = asyncio.create_task(self.process_command())
|
task = asyncio.create_task(self.process_command())
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.9"
|
__version__ = "0.1.10"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "falyx"
|
name = "falyx"
|
||||||
version = "0.1.9"
|
version = "0.1.10"
|
||||||
description = "Reliable and introspectable async CLI action framework."
|
description = "Reliable and introspectable async CLI action framework."
|
||||||
authors = ["Roland Thomas Jr <roland@rtj.dev>"]
|
authors = ["Roland Thomas Jr <roland@rtj.dev>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in New Issue