diff --git a/odoo-rpc.py b/odoo-rpc.py index c9df2c1..4244e2b 100755 --- a/odoo-rpc.py +++ b/odoo-rpc.py @@ -54,14 +54,14 @@ eprint( MODEL_IGNORE ) -def flatten(items): - """Yield items from any nested iterable; see Reference.""" - for x in items: - if isinstance(x, Iterable) and not isinstance(x, (str, bytes)): - for sub_x in flatten(x): - yield sub_x - else: - yield x +# def flatten(items): +# """Yield items from any nested iterable; see Reference.""" +# for x in items: +# if isinstance(x, Iterable) and not isinstance(x, (str, bytes)): +# for sub_x in flatten(x): +# yield sub_x +# else: +# yield x def jlog( obj ):