diff --git a/py/objtype.c b/py/objtype.c
index d35c9a98d63d9daf1759e0d065a7abbe8c4f2ed7..6934cb354d94f5c2bc254ccbf5f8c9822b1cc6e6 100644
--- a/py/objtype.c
+++ b/py/objtype.c
@@ -117,13 +117,12 @@ static mp_obj_t class_make_new(mp_obj_t self_in, uint n_args, uint n_kw, const m
 }
 
 static const qstr unary_op_method_name[] = {
-    [RT_UNARY_OP_NOT] = MP_QSTR_, // don't need to implement this
     [RT_UNARY_OP_BOOL] = MP_QSTR___bool__,
     [RT_UNARY_OP_LEN] = MP_QSTR___len__,
     //[RT_UNARY_OP_POSITIVE,
     //[RT_UNARY_OP_NEGATIVE,
     //[RT_UNARY_OP_INVERT,
-    [RT_UNARY_OP_NOT] = MP_QSTR_, // not implemented, used to make sure array has full size
+    [RT_UNARY_OP_NOT] = MP_QSTR_, // don't need to implement this, used to make sure array has full size
 };
 
 static mp_obj_t class_unary_op(int op, mp_obj_t self_in) {