summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordherrada <dylan.herrada@gmail.com>2020-05-14 16:58:25 -0400
committerdherrada <dylan.herrada@gmail.com>2020-05-14 16:58:25 -0400
commitb477c4812d1f0d0ed0fe56abcdcaa356cc3a652e (patch)
tree41004cc6cb1b029d6133722183974224be9c21b4
parent794d5f5900410730b84a1ab47c2c286b954b5c0a (diff)
Fixed minor indentation issue
-rw-r--r--shared-bindings/analogio/AnalogIn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/analogio/AnalogIn.c b/shared-bindings/analogio/AnalogIn.c
index bafa287ff..400784b39 100644
--- a/shared-bindings/analogio/AnalogIn.c
+++ b/shared-bindings/analogio/AnalogIn.c
@@ -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);