diff --git a/falyx/action/action.py b/falyx/action/action.py index 9fcf183..c872d63 100644 --- a/falyx/action/action.py +++ b/falyx/action/action.py @@ -726,7 +726,7 @@ class ActionGroup(BaseAction, ActionListMixin): if context.extra["errors"]: context.exception = Exception( f"{len(context.extra['errors'])} action(s) failed: " - f"{' ,'.join(name for name, _ in context.extra["errors"])}" + f"{' ,'.join(name for name, _ in context.extra['errors'])}" ) await self.hooks.trigger(HookType.ON_ERROR, context) raise context.exception diff --git a/falyx/version.py b/falyx/version.py index 8ef886b..2b033f6 100644 --- a/falyx/version.py +++ b/falyx/version.py @@ -1 +1 @@ -__version__ = "0.1.34" +__version__ = "0.1.35" diff --git a/pyproject.toml b/pyproject.toml index b4a533f..dd82ae0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "falyx" -version = "0.1.34" +version = "0.1.35" description = "Reliable and introspectable async CLI action framework." authors = ["Roland Thomas Jr "] license = "MIT"