From 7fe04df03b59fd574d8a4cdbeb56fe13a8c082b1 Mon Sep 17 00:00:00 2001 From: Thijs Vermeir Date: Sun, 29 Oct 2023 09:23:29 +0100 Subject: [PATCH] chore: avoid duplicate import --- src/hooks/command_not_found/myhook.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hooks/command_not_found/myhook.ts b/src/hooks/command_not_found/myhook.ts index ef2698c94b9..c99537fc557 100644 --- a/src/hooks/command_not_found/myhook.ts +++ b/src/hooks/command_not_found/myhook.ts @@ -1,7 +1,6 @@ -import {Hook, toConfiguredId, CliUx} from '@oclif/core'; +import {Help, Hook, toConfiguredId, CliUx} from '@oclif/core'; import chalk from 'chalk'; import {default as levenshtein} from 'fast-levenshtein'; -import { Help } from '@oclif/core'; export const closest = (target: string, possibilities: string[]): string => possibilities