Skip to content

Commit a9f7c27

Browse files
committed
Fix compilation errors
1 parent ae8f8e3 commit a9f7c27

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/client/api.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ import { IConfigurationService, Resource } from './common/types';
1515
import { getDebugpyLauncherArgs } from './debugger/extension/adapter/remoteLaunchers';
1616
import { IInterpreterService } from './interpreter/contracts';
1717
import { IServiceContainer, IServiceManager } from './ioc/types';
18-
import { JupyterExtensionIntegration, JupyterExtensionPythonEnvironments, type JupyterPythonEnvironmentApi } from './jupyter/jupyterIntegration';
18+
import {
19+
JupyterExtensionIntegration,
20+
JupyterExtensionPythonEnvironments,
21+
JupyterPythonEnvironmentApi,
22+
} from './jupyter/jupyterIntegration';
1923
import { traceError } from './logging';
2024
import { IDiscoveryAPI } from './pythonEnvironments/base/locator';
2125
import { buildEnvironmentApi } from './environmentApi';
@@ -33,7 +37,10 @@ export function buildApi(
3337
const configurationService = serviceContainer.get<IConfigurationService>(IConfigurationService);
3438
const interpreterService = serviceContainer.get<IInterpreterService>(IInterpreterService);
3539
serviceManager.addSingleton<JupyterExtensionIntegration>(JupyterExtensionIntegration, JupyterExtensionIntegration);
36-
serviceManager.addSingleton<JupyterExtensionPythonEnvironments>(JupyterExtensionPythonEnvironments, JupyterExtensionPythonEnvironments);
40+
serviceManager.addSingleton<JupyterExtensionPythonEnvironments>(
41+
JupyterExtensionPythonEnvironments,
42+
JupyterExtensionPythonEnvironments,
43+
);
3744
serviceManager.addSingleton<TensorboardExtensionIntegration>(
3845
TensorboardExtensionIntegration,
3946
TensorboardExtensionIntegration,

0 commit comments

Comments
 (0)