Skip to content

Commit

Permalink
fix: delete unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawkyZ committed Dec 9, 2024
1 parent fe126ef commit 1359ffc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/snyk/common/configuration/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import {
import SecretStorageAdapter from '../vscode/secretStorage';
import { IVSCodeWorkspace } from '../vscode/workspace';
import { CliExecutable } from '../../cli/cliExecutable';
import { extensionContext } from '../vscode/extensionContext';

const NEWISSUES = 'Net new issues';

Expand Down Expand Up @@ -161,7 +160,7 @@ export class Configuration implements IConfiguration {
private featureFlag: { [key: string]: boolean } = {};
private extensionId: string;

constructor(private processEnv: NodeJS.ProcessEnv = process.env, private workspace: IVSCodeWorkspace) {}
constructor(private processEnv: NodeJS.ProcessEnv = process.env, private workspace: IVSCodeWorkspace) { }

Check failure on line 163 in src/snyk/common/configuration/configuration.ts

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Delete `·`

Check failure on line 163 in src/snyk/common/configuration/configuration.ts

View workflow job for this annotation

GitHub Actions / Build and Test (macos-latest)

Delete `·`

getExtensionId(): string {
return this.extensionId;
Expand Down

0 comments on commit 1359ffc

Please sign in to comment.