File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
ports/espressif/bindings/espidf Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ stubs:
269
269
270
270
.PHONY : check-stubs
271
271
check-stubs : stubs
272
- @ (cd $( STUBDIR) && set -- * /__init__.pyi && mypy --strict " $$ {@%/*}" )
272
+ @ (cd $( STUBDIR) && set -- * /__init__.pyi && mypy " $$ {@%/*}" )
273
273
@tools/test-stubs.sh
274
274
275
275
update-frozen-libraries :
Original file line number Diff line number Diff line change @@ -110,10 +110,11 @@ const mp_obj_type_t mp_type_espidf_IDFError = {
110
110
};
111
111
112
112
113
- // class MemoryError(MemoryError):
114
- // """Raised when an ESP IDF memory allocation fails."""
115
- // ...
116
- //
113
+ //| import builtins
114
+ //| class MemoryError(builtins.MemoryError):
115
+ //| """Raised when an ESP IDF memory allocation fails."""
116
+ //| ...
117
+ //|
117
118
NORETURN void mp_raise_espidf_MemoryError (void ) {
118
119
nlr_raise (mp_obj_new_exception (& mp_type_espidf_MemoryError ));
119
120
}
You can’t perform that action at this time.
0 commit comments