##// END OF EJS Templates
strip cell.trusted as a transient value...
MinRK -
Show More
@@ -150,6 +150,9 b' def strip_transient(nb):'
150 for ws in nb['worksheets']:
150 for ws in nb['worksheets']:
151 for cell in ws['cells']:
151 for cell in ws['cells']:
152 cell.get('metadata', {}).pop('trusted', None)
152 cell.get('metadata', {}).pop('trusted', None)
153 # strip cell.trusted even though it shouldn't be used,
154 # since it's where the transient value used to be stored.
155 cell.pop('trusted', None)
153 return nb
156 return nb
154
157
155
158
General Comments 0
You need to be logged in to leave comments. Login now