depctrl global config: remove debug library import

oops
This commit is contained in:
garret 2022-07-12 04:49:28 +01:00
parent d131aad707
commit 1b2340131b
1 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,7 @@
script_name="DepCtrl Global Config"
script_description="the future is now"
script_author = "garret"
script_version = "1.0.0"
script_version = "1.0.1"
script_namespace = "garret.depctrl_config"
local DependencyControl = require("l0.DependencyControl")
@ -11,8 +11,6 @@ local depctrl = DependencyControl {
}
local json = depctrl:requireModules()
local inspect = require 'inspect'
local function get_bool(field, default) -- can't just do `field or default`, because the default might be true when field is false
if field == nil then
return default