From 338751339e2195d4cc80822dd8260da91983ce8a Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Wed, 30 Jun 2021 23:13:54 +0930 Subject: [PATCH] chore: lint --- app/core/api-manager.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/core/api-manager.ts b/app/core/api-manager.ts index 4239604f3..00cb8a4c2 100644 --- a/app/core/api-manager.ts +++ b/app/core/api-manager.ts @@ -83,7 +83,10 @@ export class ApiManager extends EventEmitter { // Load UPC + notifier keys log.debug('Loading service API keys...'); - const myserversConfigFile = loadState<{ upc: { apikey: string }, notifier: { apikey: string } }>(configPath); + const myserversConfigFile = loadState<{ + upc: { apikey: string }; + notifier: { apikey: string }; + }>(configPath); const upcApiKey = myserversConfigFile.upc.apikey; const notifierApiKey = myserversConfigFile.notifier.apikey;