Browse Source

Someday my lints will come

eels 4 years ago
parent
commit
c21ba17151
1 changed files with 1 additions and 3 deletions
  1. 1 3
      packages/fileeditor-extension/src/index.ts

+ 1 - 3
packages/fileeditor-extension/src/index.ts

@@ -218,9 +218,7 @@ function activate(
   ]);
 
   // Use available kernels to determine which common file types should have 'Create New' options in the Launcher, File Editor palette, and File menu
-  const getAvailableKernelFileTypes = async (): Promise<
-    Set<IFileTypeData>
-  > => {
+  const getAvailableKernelFileTypes = async (): Promise<Set<IFileTypeData>> => {
     const specsManager = app.serviceManager.kernelspecs;
     await specsManager.ready;
     let fileTypes = new Set<IFileTypeData>();