Skip to content

Commit 74d5861

Browse files
committed
now will get action reponse
now will get action reponse
1 parent 556082d commit 74d5861

File tree

6 files changed

+22
-16
lines changed

6 files changed

+22
-16
lines changed

.idea/workspace.xml

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-83.5 MB
Binary file not shown.
-66.8 MB
Binary file not shown.
-52.2 MB
Binary file not shown.

dev_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="je_auto_control_dev",
8-
version="0.0.36",
8+
version="0.0.37",
99
author="JE-Chen",
1010
author_email="zenmailman@gmail.com",
1111
description="auto testing",

je_auto_control/utils/executor/action_executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def __init__(self):
5656
def _execute_event(self, action: list):
5757
event = self.event_dict.get(action[0])
5858
if len(action) == 2:
59-
event(**action[1])
59+
return event(**action[1])
6060
elif len(action) == 1:
61-
event()
61+
return event()
6262
else:
6363
raise AutoControlActionException(cant_execute_action_error + " " + str(action))
6464

0 commit comments

Comments
 (0)