diff options
| -rw-r--r-- | photoblaster/params.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/photoblaster/params.py b/photoblaster/params.py index 40cd13c..02090de 100644 --- a/photoblaster/params.py +++ b/photoblaster/params.py @@ -58,7 +58,6 @@ class Params(object): def_dict[key].get('default', None) elif 'default' in def_dict[key]: value = def_dict[key]['default'] - print("{} -> {}".format(key, value)) if def_dict[key]['type'] == "bool": instance = Bool(value, classname=classname) elif def_dict[key]['type'] == "color": @@ -82,3 +81,5 @@ class Params(object): elif def_dict[key]['type'] == "string": instance = String(value, classname=classname) self.__setattr__(key, instance) + print("{} -> {}".format(key, value)) + print("done") |
