Merge pull request #1892 from drewpearce/dynamodb-ne

Dynamodb ne
This commit is contained in:
Steve Pulec 2018-12-28 21:23:01 -05:00 committed by GitHub
commit d685a9f50a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 1 deletions

View file

@ -383,7 +383,7 @@ class OpNotEqual(Op):
def expr(self, item):
lhs = self._lhs(item)
rhs = self._rhs(item)
return lhs == rhs
return lhs != rhs
class OpLessThanOrEqual(Op):