From 07963969aca4c3f198e68bf6b5cd1f8c949fc511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sat, 8 Jul 2023 09:06:33 +0200 Subject: [PATCH] Move Probot import to the top --- appFn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appFn.ts b/appFn.ts index 8570f52..59f3c3f 100644 --- a/appFn.ts +++ b/appFn.ts @@ -1,7 +1,7 @@ +import { Probot } from 'probot'; import getMetaData from 'metadata-scraper'; import { getPlaylistIdFromUrl } from './getPlaylistIdFromUrl'; -import { Probot } from 'probot'; type ReviewEvent = 'REQUEST_CHANGES' | 'COMMENT' | 'APPROVE';