From 661c90c5a132ff28afc1e8bb750f8e93ff68ac03 Mon Sep 17 00:00:00 2001 From: synkarius Date: Mon, 14 Oct 2019 19:39:47 -0400 Subject: [PATCH] refs #29, #385: no hybrid rules --- castervoice/asynch/hmc_rules/hmc_launch_rule.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/castervoice/asynch/hmc_rules/hmc_launch_rule.py b/castervoice/asynch/hmc_rules/hmc_launch_rule.py index 4da249605..c68288298 100644 --- a/castervoice/asynch/hmc_rules/hmc_launch_rule.py +++ b/castervoice/asynch/hmc_rules/hmc_launch_rule.py @@ -1,9 +1,8 @@ -from dragonfly import Function +from dragonfly import Function, MappingRule from castervoice.asynch.hmc import h_launch from castervoice.lib import settings from castervoice.lib.ctrl.mgr.rule_details import RuleDetails -from castervoice.lib.merge.mergerule import MergeRule from castervoice.lib.merge.state.actions import AsynchronousAction from castervoice.lib.merge.state.short import R, S, L @@ -24,7 +23,7 @@ def settings_window(): blocking=False).execute() -class HMCLaunchRule(MergeRule): +class HMCLaunchRule(MappingRule): mapping = { "launch settings window": R(Function(settings_window)),