From f4948b099f21e6dbebd96d5a76d849d8206d8325 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 5 Jul 2018 16:21:11 -0400 Subject: [PATCH] cleanup unused imports --- src/commands/export.command.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/commands/export.command.ts b/src/commands/export.command.ts index 22a0ed33e7..6c943a3efc 100644 --- a/src/commands/export.command.ts +++ b/src/commands/export.command.ts @@ -1,7 +1,5 @@ import * as program from 'commander'; -import * as fs from 'fs'; import * as inquirer from 'inquirer'; -import * as path from 'path'; import { CryptoService } from 'jslib/abstractions/crypto.service'; import { ExportService } from 'jslib/abstractions/export.service'; @@ -10,7 +8,6 @@ import { UserService } from 'jslib/abstractions/user.service'; import { Response } from '../models/response'; import { MessageResponse } from '../models/response/messageResponse'; -import { Utils } from 'jslib/misc/utils'; import { CliUtils } from '../utils'; export class ExportCommand {