hotfix syntax error < python3.12

This commit is contained in:
Roland Thomas Jr 2025-05-24 13:46:07 -04:00
parent ddb78bd5a7
commit ba562168aa
Signed by: roland
GPG Key ID: 7C3C2B085A4C2872
3 changed files with 3 additions and 3 deletions

View File

@ -726,7 +726,7 @@ class ActionGroup(BaseAction, ActionListMixin):
if context.extra["errors"]: if context.extra["errors"]:
context.exception = Exception( context.exception = Exception(
f"{len(context.extra['errors'])} action(s) failed: " 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) await self.hooks.trigger(HookType.ON_ERROR, context)
raise context.exception raise context.exception

View File

@ -1 +1 @@
__version__ = "0.1.34" __version__ = "0.1.35"

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "falyx" name = "falyx"
version = "0.1.34" version = "0.1.35"
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"