Skip to content

Commit 0e13717

Browse files
committed
Format to make prettier happy
1 parent eb06b79 commit 0e13717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extensions/positron-python/src/client/common/installer/moduleInstaller.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { IModuleInstaller, InstallOptions, InterpreterUri, ModuleInstallFlags }
2929
// --- Start Positron ---
3030
// eslint-disable-next-line import/newline-after-import
3131
import { IWorkspaceService } from '../application/types';
32-
class ExternallyManagedEnvironmentError extends Error { }
32+
class ExternallyManagedEnvironmentError extends Error {}
3333
// --- End Positron ---
3434

3535
@injectable()
@@ -50,7 +50,7 @@ export abstract class ModuleInstaller implements IModuleInstaller {
5050
// the installation went.
5151
private _waitForCompletion?: boolean;
5252
// --- End Positron ---
53-
constructor(protected serviceContainer: IServiceContainer) { }
53+
constructor(protected serviceContainer: IServiceContainer) {}
5454

5555
public async installModule(
5656
productOrModuleName: Product | string,
@@ -173,7 +173,7 @@ export abstract class ModuleInstaller implements IModuleInstaller {
173173
if (ex instanceof ExternallyManagedEnvironmentError) {
174174
traceWarn(
175175
`Failed to install ${name} in ${resource?.path} because it is an ` +
176-
`externally-managed environment. Retrying with the --break-system-packages flag.`,
176+
`externally-managed environment. Retrying with the --break-system-packages flag.`,
177177
);
178178
await _install(token, (flags ?? ModuleInstallFlags.none) | ModuleInstallFlags.breakSystemPackages);
179179
} else {

0 commit comments

Comments
 (0)