Skip to content

Commit 760fdd0

Browse files
committed
fix: remove invalid content parsing for variable names
1 parent 09266cb commit 760fdd0

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/notebooks/deepnote/deepnoteInputBlockCellStatusBarProvider.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -605,13 +605,6 @@ export class DeepnoteInputBlockCellStatusBarItemProvider
605605
}
606606
}
607607

608-
// Fall back to cell content (which should contain the variable name with "# " prefix)
609-
const cellContent = cell.document.getText().trim();
610-
if (cellContent) {
611-
// Remove "# " prefix if present
612-
return cellContent.startsWith('# ') ? cellContent.substring(2) : cellContent;
613-
}
614-
615608
return '';
616609
}
617610

0 commit comments

Comments
 (0)