aboutsummaryrefslogtreecommitdiff
path: root/helpers/actions/stop_all_actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/actions/stop_all_actions.py')
-rw-r--r--helpers/actions/stop_all_actions.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/helpers/actions/stop_all_actions.py b/helpers/actions/stop_all_actions.py
deleted file mode 100644
index 4ea875a..0000000
--- a/helpers/actions/stop_all_actions.py
+++ /dev/null
@@ -1,14 +0,0 @@
1def run(action, key_start_time=0, other_only=False, **kwargs):
2 if other_only:
3 action.mapping.stop_all_running(
4 except_key=action.key,
5 key_start_time=key_start_time)
6 else:
7 action.mapping.stop_all_running()
8
9def description(action, other_only=False, **kwargs):
10 message = "stopping all actions"
11 if other_only:
12 message += " except this key"
13
14 return message