summaryrefslogtreecommitdiff
path: root/lib/utils/context_manager_helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils/context_manager_helpers.c')
-rw-r--r--lib/utils/context_manager_helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/context_manager_helpers.c b/lib/utils/context_manager_helpers.c
index 901c27030..261485616 100644
--- a/lib/utils/context_manager_helpers.c
+++ b/lib/utils/context_manager_helpers.c
@@ -29,6 +29,6 @@
#include "py/obj.h"
STATIC mp_obj_t default___enter__(mp_obj_t self_in) {
- return self_in;
+ return self_in;
}
MP_DEFINE_CONST_FUN_OBJ_1(default___enter___obj, default___enter__);