From 05b33c000fa15e2941edd571685c1ccf2708bf15 Mon Sep 17 00:00:00 2001 From: Svyat Sobol Date: Fri, 7 Jan 2022 21:39:16 +0200 Subject: [PATCH] refactor: Remove unused import --- src/utils/clipboardUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/clipboardUtils.ts b/src/utils/clipboardUtils.ts index a6557b55..9837685b 100644 --- a/src/utils/clipboardUtils.ts +++ b/src/utils/clipboardUtils.ts @@ -1,7 +1,7 @@ /* istanbul ignore file */ import { spawn } from 'child_process'; -import { inspect, getSystemErrorName } from 'util'; +import { inspect } from 'util'; import fs from 'fs-extra'; /* These utils borrowed from https://github.com/andrewdotn/2md */