Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Commit

Permalink
Fix existing linting problems
Browse files Browse the repository at this point in the history
  • Loading branch information
abonie committed Aug 8, 2017
1 parent ec84111 commit fc762b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batavia/types/Set.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ Set.prototype.__contains__ = function(other) {
* Unary operators
**************************************************/
Set.prototype.__pos__ = function() {
throw new exceptions.TypeError.$pyclass("bad operand type for unary +: 'set'")
throw new exceptions.TypeError.$pyclass("bad operand type for unary +: 'set'")
}

Set.prototype.__not__ = function() {
return this.__bool__().__not__()
}
Expand Down

0 comments on commit fc762b9

Please sign in to comment.