Add missing "}"s in modules/check_mode.py

This commit is contained in:
jesopo 2018-11-10 22:35:35 +00:00
parent dbe0d6cdab
commit 9826209ddf

View file

@ -5,9 +5,9 @@ LOWHIGH = {
"high": "o"
}
@utils.export("channelset", {"setting": "mode-low",
"help": "Set which channel mode is considered to be 'low' access")
"help": "Set which channel mode is considered to be 'low' access"})
@utils.export("channelset", {"setting": "mode-high",
"help": "Set which channel mode is considered to be 'high' access")
"help": "Set which channel mode is considered to be 'high' access"})
class Module(ModuleManager.BaseModule):
@utils.hook("preprocess.command")
def preprocess_command(self, event):