From f383f85811f7318bf9191251fe75657540f3050c Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 23 Feb 2022 12:10:26 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/validate_trigger.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sopel_SpiceBot_Core_Prerun/validate_trigger.py b/sopel_SpiceBot_Core_Prerun/validate_trigger.py index 979a361..7c25613 100644 --- a/sopel_SpiceBot_Core_Prerun/validate_trigger.py +++ b/sopel_SpiceBot_Core_Prerun/validate_trigger.py @@ -8,8 +8,7 @@ def validate_trigger(trigger, trigger_dict): print(trigger.group(0)) print(trigger.group(1)) - print(trigger.args[0]) - print(trigger.args[1]) + print(trigger.args) if trigger_dict["trigger_type"] == "command": trigger._pretrigger = sb.commands.generate_pretrigger_command(trigger_dict) @@ -20,7 +19,6 @@ def validate_trigger(trigger, trigger_dict): print(trigger.group(0)) print(trigger.group(1)) - print(trigger.args[0]) - print(trigger.args[1]) + print(trigger.args) return trigger, redispatch