Skip to content

Commit

Permalink
forgot the EQ abstract visit method
Browse files Browse the repository at this point in the history
  • Loading branch information
bmyerz committed Feb 7, 2014
1 parent 1a1b338 commit 2efce61
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions raco/expression/boolean.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ def visit_AND(self, binaryExpr):
def visit_OR(self, binaryExpr):
return

@abc.abstractmethod
def visit_EQ(self, binaryExpr):
return

@abc.abstractmethod
def visit_NEQ(self, binaryExpr):
return
Expand Down

0 comments on commit 2efce61

Please sign in to comment.