diff --git a/falyx/falyx.py b/falyx/falyx.py index c9638c6..ec3e7e2 100644 --- a/falyx/falyx.py +++ b/falyx/falyx.py @@ -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()) diff --git a/falyx/version.py b/falyx/version.py index c11f861..569b121 100644 --- a/falyx/version.py +++ b/falyx/version.py @@ -1 +1 @@ -__version__ = "0.1.9" +__version__ = "0.1.10" diff --git a/pyproject.toml b/pyproject.toml index 0956a89..011022d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"