From 54a2e15f6bf459a07e7da4178074ed143e2e251c Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Thu, 22 Jul 2021 17:40:13 -0700 Subject: [PATCH] remove unused variable --- extensions/github-authentication/src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/github-authentication/src/github.ts b/extensions/github-authentication/src/github.ts index ac94424ad47..c5a7ce1ec62 100644 --- a/extensions/github-authentication/src/github.ts +++ b/extensions/github-authentication/src/github.ts @@ -6,7 +6,7 @@ import * as vscode from 'vscode'; import { v4 as uuid } from 'uuid'; import { Keychain } from './common/keychain'; -import { GitHubServer, uriHandler, NETWORK_ERROR } from './githubServer'; +import { GitHubServer, uriHandler } from './githubServer'; import Logger from './common/logger'; import { arrayEquals } from './common/utils'; import { ExperimentationTelemetry } from './experimentationService';