Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jyyi1 committed Sep 25, 2024
1 parent de06874 commit 94f26ce
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/electron/routing_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import * as sudo from 'sudo-prompt';

import {pathToEmbeddedOutlineService} from './app_paths';
import {TunnelStatus} from '../src/www/app/outline_server_repository/vpn';
import {ErrorCode, SystemConfigurationException} from '../src/www/model/errors';
import {ErrorCode} from '../src/www/model/errors';
import {
PlatformError,
ROUTING_SERVICE_NOT_RUNNING,
Expand Down Expand Up @@ -85,7 +85,10 @@ export class RoutingDaemon {

private networkChangeListener?: (status: TunnelStatus) => void;

constructor(private proxyAddress: string, private isAutoConnect: boolean) {}
constructor(
private proxyAddress: string,
private isAutoConnect: boolean
) {}

// Fulfills once a connection is established with the routing daemon *and* it has successfully
// configured the system's routing table.
Expand Down

0 comments on commit 94f26ce

Please sign in to comment.