Open AndyLamperski opened 6 years ago
When writing to a Jupyter notebook, if a code cell had the option 'execute=False', I would get the following error:
Failed validating 'type' in code_cell['properties']['outputs']: On instance['cells'][1]['outputs']: ''
This was fixed by changing the result from '' to []. Also, the execution count for non-executed cells was set to None.
''
[]
None
I haven't tested if this causes undesirable behavior for other output formats.
When writing to a Jupyter notebook, if a code cell had the option 'execute=False', I would get the following error:
This was fixed by changing the result from
''
to[]
. Also, the execution count for non-executed cells was set toNone
.I haven't tested if this causes undesirable behavior for other output formats.