From c9e5ca5420f7b56d1f7f882b80c1a2e96eddd805 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Fri, 23 Oct 2020 08:05:24 +0200 Subject: [PATCH] :shirt: Fix lint issue --- .../nodes-base/nodes/Google/Calendar/GoogleCalendar.node.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nodes-base/nodes/Google/Calendar/GoogleCalendar.node.ts b/packages/nodes-base/nodes/Google/Calendar/GoogleCalendar.node.ts index 2d168eaf4d..8b633667a9 100644 --- a/packages/nodes-base/nodes/Google/Calendar/GoogleCalendar.node.ts +++ b/packages/nodes-base/nodes/Google/Calendar/GoogleCalendar.node.ts @@ -81,7 +81,7 @@ export class GoogleCalendar implements INodeType { // Get all the calendars to display them to user so that he can // select them easily async getConferenceSolutations( - this: ILoadOptionsFunctions + this: ILoadOptionsFunctions, ): Promise { const returnData: INodePropertyOptions[] = []; const calendar = this.getCurrentNodeParameter('calendar') as string; @@ -310,7 +310,7 @@ export class GoogleCalendar implements INodeType { requestId: uuid(), conferenceSolution: { type: conferenceData.conferenceSolution as string, - } + }, }, }; }