Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio authored Oct 17, 2023
1 parent d4d8459 commit cb85ff9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/notebook-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {

import { Cell, CodeCell } from '@jupyterlab/cells';

import { Text, Time } from '@jupyterlab/coreutils';
import { PageConfig, Text, Time, URLExt } from '@jupyterlab/coreutils';

import { IDocumentManager } from '@jupyterlab/docmanager';

Expand All @@ -38,9 +38,6 @@ import { Widget } from '@lumino/widgets';

import { TrustedComponent } from './trusted';

import { PageConfig, URLExt } from '@jupyterlab/coreutils';


/**
* The class for kernel status errors.
*/
Expand Down Expand Up @@ -415,7 +412,10 @@ const tabIcon: JupyterFrontEndPlugin<void> = {
activate: (app: JupyterFrontEnd, tracker: INotebookTracker) => {
// the favicons are provided by Jupyter Server
const baseURL = PageConfig.getBaseUrl();
const notebookIcon = URLExt.join(baseURL, 'static/favicons/favicon-notebook.ico');
const notebookIcon = URLExt.join(
baseURL,
'static/favicons/favicon-notebook.ico'
);
const busyIcon = URLExt.join(baseURL, 'static/favicons/favicon-busy-1.ico');

const updateBrowserFavicon = (
Expand Down

0 comments on commit cb85ff9

Please sign in to comment.