From a4c6720840d238095de27a1b7eeaf0d5215551a4 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 23 Jul 2019 00:27:03 -0600 Subject: [PATCH] delint --- src/scalar/ScalarClient.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/scalar/ScalarClient.ts b/src/scalar/ScalarClient.ts index 5c702cc..1bac49b 100644 --- a/src/scalar/ScalarClient.ts +++ b/src/scalar/ScalarClient.ts @@ -5,7 +5,6 @@ import { LogService } from "matrix-js-snippets"; import Upstream from "../db/models/Upstream"; import { SCALAR_API_VERSION } from "../utils/common-constants"; import { ITermsResponse } from "../api/controllers/TermsController"; -import { subscriptionLogsToBeFn } from "rxjs/internal/testing/TestScheduler"; const REGISTER_ROUTE = "/register"; const ACCOUNT_INFO_ROUTE = "/account"; @@ -91,7 +90,7 @@ export class ScalarClient { LogService.error("ScalarClient", err); reject(err); } else if (res.statusCode !== 200) { - if (typeof(res.body) === 'string') { + if (typeof (res.body) === 'string') { try { res.body = JSON.parse(res.body); } catch (e) {