From 5ddf36d4c18a38b85af34c73a8876cfdba85cfce Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 13 Jul 2021 22:23:46 +0200 Subject: [PATCH] lint --- tabby-local/src/components/terminalTab.component.ts | 3 +-- tabby-local/src/services/terminal.service.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tabby-local/src/components/terminalTab.component.ts b/tabby-local/src/components/terminalTab.component.ts index 59175c65..4070b4e2 100644 --- a/tabby-local/src/components/terminalTab.component.ts +++ b/tabby-local/src/components/terminalTab.component.ts @@ -1,10 +1,9 @@ import { Component, Input, Injector } from '@angular/core' import { BaseTabProcess, WIN_BUILD_CONPTY_SUPPORTED, isWindowsBuild } from 'tabby-core' import { BaseTerminalTabComponent } from 'tabby-terminal' -import { LocalProfile } from '../api' +import { LocalProfile, SessionOptions } from '../api' import { Session } from '../session' import { UACService } from '../services/uac.service' -import { SessionOptions } from 'http2' /** @hidden */ @Component({ diff --git a/tabby-local/src/services/terminal.service.ts b/tabby-local/src/services/terminal.service.ts index 742f4e1c..02794251 100644 --- a/tabby-local/src/services/terminal.service.ts +++ b/tabby-local/src/services/terminal.service.ts @@ -1,6 +1,6 @@ import * as fs from 'mz/fs' import { Injectable } from '@angular/core' -import { Logger, LogService, ConfigService, AppService, ProfilesService } from 'tabby-core' +import { Logger, LogService, ConfigService, ProfilesService } from 'tabby-core' import { TerminalTabComponent } from '../components/terminalTab.component' import { LocalProfile } from '../api' @@ -10,7 +10,6 @@ export class TerminalService { /** @hidden */ private constructor ( - private app: AppService, private profilesService: ProfilesService, private config: ConfigService, log: LogService,