hotfix syntax error < python3.12
This commit is contained in:
parent
ddb78bd5a7
commit
ba562168aa
|
@ -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
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.34"
|
__version__ = "0.1.35"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue