diff options
| -rwxr-xr-x | photoblaster/modules/pbgenerate/__init__.py | 2 | ||||
| -rw-r--r-- | photoblaster/params.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/photoblaster/modules/pbgenerate/__init__.py b/photoblaster/modules/pbgenerate/__init__.py index 64354ca..c38e011 100755 --- a/photoblaster/modules/pbgenerate/__init__.py +++ b/photoblaster/modules/pbgenerate/__init__.py @@ -116,11 +116,9 @@ class PbGenerate(ModuleBase): """ Definitions and arguments are merged into attributes of the params object""" - print("<<<<<<<<<<<<<<,") self.params.definitions_import( _definitions, kwargs, classname=self.__class__.__name__ ) - print(">>>>>>>>>>>>>>") """Used for the database tag column. Allows for tracking of the type of overlay method used.""" diff --git a/photoblaster/params.py b/photoblaster/params.py index 488f639..40cd13c 100644 --- a/photoblaster/params.py +++ b/photoblaster/params.py @@ -58,6 +58,7 @@ 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": |
