not hasattr(getattr(value, key), "__call__")}
for value_id, value in node.values.items()})
print("")
print("")
def setup(hass, config):
After Change
def nice_print_node(node):
Prints a nice formatted node to the output (debug method)
node_dict = _obj_to_dict(node)
node_dict["values"] = {value_id: _obj_to_dict(value)
for value_id, value in node.values.items()}
print("\n\n\n")
print("FOUND NODE", node.product_name)
pprint(node_dict)
print("\n\n\n")
def setup(hass, config):