Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Feb 3, 2022
1 parent c60b746 commit 75a3276
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/jupyterlab_widgets/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ function* consoleWidgetRenderers(
): Generator<WidgetRenderer, void, unknown> {
for (const cell of toArray(console.cells)) {
if (cell.model.type === 'code') {
for (const codecell of ((cell as unknown) as CodeCell).outputArea
.widgets) {
for (const codecell of (cell as unknown as CodeCell).outputArea.widgets) {
for (const output of toArray(codecell.children())) {
if (output instanceof WidgetRenderer) {
yield output;
Expand Down

0 comments on commit 75a3276

Please sign in to comment.