From 614c775f91486a2335b8f9494dbddba06e504d28 Mon Sep 17 00:00:00 2001 From: blam Date: Mon, 2 May 2022 15:08:08 +0200 Subject: [PATCH] chore: remove unused import Signed-off-by: blam --- packages/cli/src/commands/create-github-app/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/create-github-app/index.ts b/packages/cli/src/commands/create-github-app/index.ts index 8e213eaf20..2e5dd01072 100644 --- a/packages/cli/src/commands/create-github-app/index.ts +++ b/packages/cli/src/commands/create-github-app/index.ts @@ -17,7 +17,7 @@ import fs from 'fs-extra'; import chalk from 'chalk'; import { stringify as stringifyYaml } from 'yaml'; -import inquirer, { Answers, Question } from 'inquirer'; +import inquirer, { Question } from 'inquirer'; import { paths } from '../../lib/paths'; import { GithubCreateAppServer } from './GithubCreateAppServer'; import fetch from 'node-fetch';