Browse Source

Appease linter

Tyler Hallada 6 years ago
parent
commit
a79f501c5e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/Line.ts
  2. 1 1
      src/Train.ts

+ 1 - 1
src/Line.ts

@@ -21,7 +21,7 @@ export default class Line {
21 21
     start: PIXI.Point,
22 22
     startDirection: Direction,
23 23
     numStations: number,
24
-    color: tinycolorInstance
24
+    color: tinycolorInstance,
25 25
   ) {
26 26
     this.color = color;
27 27
     this.stations = [];

+ 1 - 1
src/Train.ts

@@ -21,7 +21,7 @@ export default class Train {
21 21
     passengers: number,
22 22
     origin: Station,
23 23
     destination: Station,
24
-    color: tinycolorInstance
24
+    color: tinycolorInstance,
25 25
   ) {
26 26
     this.location = location;
27 27
     this.speed = speed;