Fixed minor indentation issue

This commit is contained in:
dherrada 2020-05-14 16:58:25 -04:00
parent 794d5f5900
commit b477c4812d
No known key found for this signature in database
GPG Key ID: CE2ADBAB8775CE81
1 changed files with 3 additions and 3 deletions

View File

@ -70,9 +70,9 @@ STATIC mp_obj_t analogio_analogin_make_new(const mp_obj_type_t *type,
return MP_OBJ_FROM_PTR(self);
}
//| def deinit(self, ) -> Any:
//| """Turn off the AnalogIn and release the pin for other use."""
//| ...
//| def deinit(self, ) -> Any:
//| """Turn off the AnalogIn and release the pin for other use."""
//| ...
//|
STATIC mp_obj_t analogio_analogin_deinit(mp_obj_t self_in) {
analogio_analogin_obj_t *self = MP_OBJ_TO_PTR(self_in);