Skip to content

Commit

Permalink
fix bad-sim-text lint error, phetsims/chipper#791 #37
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 25, 2019
1 parent ae842f3 commit 052fd48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/explore/model/BankSceneModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ define( require => {
}

// statics - colors used for primary and comparison account points
static get PRIMARY_ACCOUNT_POINT_COLOR() { return PRIMARY_ACCOUNT_POINT_COLOR; }
static get PRIMARY_ACCOUNT_POINT_COLOR() { return PRIMARY_ACCOUNT_POINT_COLOR; } // eslint-disable-line bad-sim-text

static get COMPARISON_ACCOUNT_POINT_COLOR() { return COMPARISON_ACCOUNT_POINT_COLOR; }
static get COMPARISON_ACCOUNT_POINT_COLOR() { return COMPARISON_ACCOUNT_POINT_COLOR; } // eslint-disable-line bad-sim-text
}

class Account {
Expand Down

0 comments on commit 052fd48

Please sign in to comment.