From a79f501c5eea78f13df5ae8cf702ae83e0ecd1b5 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Sun, 15 Apr 2018 04:06:45 -0400 Subject: [PATCH] Appease linter --- src/Line.ts | 2 +- src/Train.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Line.ts b/src/Line.ts index db32f1c..84bc017 100644 --- a/src/Line.ts +++ b/src/Line.ts @@ -21,7 +21,7 @@ export default class Line { start: PIXI.Point, startDirection: Direction, numStations: number, - color: tinycolorInstance + color: tinycolorInstance, ) { this.color = color; this.stations = []; diff --git a/src/Train.ts b/src/Train.ts index e89c335..9a48b24 100644 --- a/src/Train.ts +++ b/src/Train.ts @@ -21,7 +21,7 @@ export default class Train { passengers: number, origin: Station, destination: Station, - color: tinycolorInstance + color: tinycolorInstance, ) { this.location = location; this.speed = speed;