falyx 0.1.31__py3-none-any.whl → 0.1.32__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- falyx/action/action_factory.py +3 -1
- falyx/version.py +1 -1
- {falyx-0.1.31.dist-info → falyx-0.1.32.dist-info}/METADATA +1 -1
- {falyx-0.1.31.dist-info → falyx-0.1.32.dist-info}/RECORD +7 -7
- {falyx-0.1.31.dist-info → falyx-0.1.32.dist-info}/LICENSE +0 -0
- {falyx-0.1.31.dist-info → falyx-0.1.32.dist-info}/WHEEL +0 -0
- {falyx-0.1.31.dist-info → falyx-0.1.32.dist-info}/entry_points.txt +0 -0
falyx/action/action_factory.py
CHANGED
@@ -63,6 +63,8 @@ class ActionFactoryAction(BaseAction):
|
|
63
63
|
return self.factory, None
|
64
64
|
|
65
65
|
async def _run(self, *args, **kwargs) -> Any:
|
66
|
+
args = (*self.args, *args)
|
67
|
+
kwargs = {**self.kwargs, **kwargs}
|
66
68
|
updated_kwargs = self._maybe_inject_last_result(kwargs)
|
67
69
|
context = ExecutionContext(
|
68
70
|
name=f"{self.name} (factory)",
|
@@ -92,7 +94,7 @@ class ActionFactoryAction(BaseAction):
|
|
92
94
|
)
|
93
95
|
if self.options_manager:
|
94
96
|
generated_action.set_options_manager(self.options_manager)
|
95
|
-
context.result = await generated_action(
|
97
|
+
context.result = await generated_action()
|
96
98
|
await self.hooks.trigger(HookType.ON_SUCCESS, context)
|
97
99
|
return context.result
|
98
100
|
except Exception as error:
|
falyx/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.1.
|
1
|
+
__version__ = "0.1.32"
|
@@ -4,7 +4,7 @@ falyx/__main__.py,sha256=g_LwJieofK3DJzCYtpkAMEeOXhzSLQenb7pRVUqcf-Y,2152
|
|
4
4
|
falyx/action/.pytyped,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
falyx/action/__init__.py,sha256=zpOK5g4DybydV8d3QI0Zq52aWaKFPYi-J6szAQTsQ2c,974
|
6
6
|
falyx/action/action.py,sha256=GWVkkbIJBPeS75YXJS9lEYdZD6LXdyMr8yU5KWkt_m4,33389
|
7
|
-
falyx/action/action_factory.py,sha256=
|
7
|
+
falyx/action/action_factory.py,sha256=iJ7jx8WxQ9W2v1-xBoUzFD3X-3IFQjjClfGYCg5io4o,4834
|
8
8
|
falyx/action/http_action.py,sha256=aIieGHyZSkz1ZGay-fwgDYZ0QF17XypAWtKeVAYp5f4,5806
|
9
9
|
falyx/action/io_action.py,sha256=tQVonWst44ZXR_87H6-aQ62DZf7qfpbBiKE1oTp9qVA,10061
|
10
10
|
falyx/action/menu_action.py,sha256=Qv8iUqlQeXMT6lCXg99YuRGswGWS_tkU8VeuqkC_uQA,5763
|
@@ -44,9 +44,9 @@ falyx/themes/__init__.py,sha256=1CZhEUCin9cUk8IGYBUFkVvdHRNNJBEFXccHwpUKZCA,284
|
|
44
44
|
falyx/themes/colors.py,sha256=4aaeAHJetmeNInI0Zytg4E3YqKfPFelpf04vtjSvsS8,19776
|
45
45
|
falyx/utils.py,sha256=u3puR4Bh-unNBw9a0V9sw7PDTIzRaNLolap0oz5bVIk,6718
|
46
46
|
falyx/validators.py,sha256=t5iyzVpY8tdC4rfhr4isEfWpD5gNTzjeX_Hbi_Uq6sA,1328
|
47
|
-
falyx/version.py,sha256=
|
48
|
-
falyx-0.1.
|
49
|
-
falyx-0.1.
|
50
|
-
falyx-0.1.
|
51
|
-
falyx-0.1.
|
52
|
-
falyx-0.1.
|
47
|
+
falyx/version.py,sha256=GbbcUKhE6NYfh8LsIe9sL2m1pABous_0kRd-OZzd_C8,23
|
48
|
+
falyx-0.1.32.dist-info/LICENSE,sha256=B0yqgaHuSdhN7T3OBmgQSiDTy8HqT5Oe_dLypRe4Ra4,1073
|
49
|
+
falyx-0.1.32.dist-info/METADATA,sha256=EVf-yy-RFasEapcqULOjXlsGKBjmWS3BngaOaf5rnBU,5521
|
50
|
+
falyx-0.1.32.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
51
|
+
falyx-0.1.32.dist-info/entry_points.txt,sha256=j8owOSl2j1Ss8DtGMnKfgehKaolqnIPhVFHaUBLUnMs,45
|
52
|
+
falyx-0.1.32.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|