##// END OF EJS Templates
Use cell.prompt_number rather than cell['prompt_number']
Jessica B. Hamrick -
Show More
@@ -24,5 +24,5 b' class ClearOutputPreprocessor(Preprocessor):'
24 """
24 """
25 if cell.cell_type == 'code':
25 if cell.cell_type == 'code':
26 cell.outputs = []
26 cell.outputs = []
27 cell['prompt_number'] = None
27 cell.prompt_number = None
28 return cell, resources
28 return cell, resources
General Comments 0
You need to be logged in to leave comments. Login now