diff options
Diffstat (limited to 'py/objlist.c')
-rw-r--r-- | py/objlist.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/objlist.c b/py/objlist.c index a3b7e79ab..531e4b85b 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -138,8 +138,6 @@ STATIC mp_obj_t list_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { case MP_BINARY_OP_MORE: case MP_BINARY_OP_MORE_EQUAL: return MP_BOOL(list_cmp_helper(op, lhs, rhs)); - case MP_BINARY_OP_NOT_EQUAL: - return MP_BOOL(!list_cmp_helper(MP_BINARY_OP_EQUAL, lhs, rhs)); default: // op not supported |