File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
src/notebooks/deepnote/converters Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -55,13 +55,8 @@ export abstract class BaseInputBlockConverter<T extends z.ZodObject> implements
5555 logger . error ( 'Error parsing deepnote input metadata' , deepnoteMetadataResult . error ) ;
5656 }
5757
58- // Extract the variable name from metadata
59- const variableName = deepnoteMetadataResult . success
60- ? ( deepnoteMetadataResult . data as { deepnote_variable_name ?: string } ) . deepnote_variable_name || ''
61- : '' ;
62-
6358 // Create a code cell with Python language showing just the variable name
64- const cell = new NotebookCellData ( NotebookCellKind . Code , `# ${ variableName } ` , 'python ' ) ;
59+ const cell = new NotebookCellData ( NotebookCellKind . Code , '' , 'plaintext ' ) ;
6560
6661 return cell ;
6762 }
You can’t perform that action at this time.
0 commit comments