From d52c2ed18c660de20ecdd81aff4c3aca0b35f5c8 Mon Sep 17 00:00:00 2001 From: sabhas Date: Mon, 1 Nov 2021 15:28:07 +0000 Subject: [PATCH] chore: lint fix --- api/src/routes/api/drive.ts | 7 ++++++- api/src/routes/web/web.ts | 5 +---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/api/src/routes/api/drive.ts b/api/src/routes/api/drive.ts index 76cd9ec..04887cb 100644 --- a/api/src/routes/api/drive.ts +++ b/api/src/routes/api/drive.ts @@ -1,6 +1,11 @@ import express from 'express' import path from 'path' -import { createFileTree, getTreeExample, DriveController, ExecutionController } from '../../controllers' +import { + createFileTree, + getTreeExample, + DriveController, + ExecutionController +} from '../../controllers' import { isFileTree, isFileQuery } from '../../types' import { getTmpFilesFolderPath } from '../../utils' diff --git a/api/src/routes/web/web.ts b/api/src/routes/web/web.ts index 7f90ea6..4671dab 100644 --- a/api/src/routes/web/web.ts +++ b/api/src/routes/web/web.ts @@ -1,10 +1,7 @@ import express from 'express' import { isExecutionQuery } from '../../types' import path from 'path' -import { - getTmpFilesFolderPath, - getWebBuildFolderPath, -} from '../../utils' +import { getTmpFilesFolderPath, getWebBuildFolderPath } from '../../utils' import { ExecutionController } from '../../controllers' const webRouter = express.Router()