We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed41acd commit a718d33Copy full SHA for a718d33
2 files changed
shared-bindings/imagecapture/ParallelImageCapture.c
@@ -43,7 +43,7 @@
43
//| clock: microcontroller.Pin,
44
//| vsync: Optional[microcontroller.Pin],
45
//| href: Optional[microcontroller.Pin],
46
-//| ):
+//| ) -> None:
47
//| """Create a parallel image capture object
48
//|
49
//| :param List[microcontroller.Pin] data_pins: The data pins.
shared-bindings/keypad/EventQueue.c
@@ -55,7 +55,7 @@ STATIC mp_obj_t keypad_eventqueue_next(mp_obj_t self_in) {
55
}
56
MP_DEFINE_CONST_FUN_OBJ_1(keypad_eventqueue_next_obj, keypad_eventqueue_next);
57
58
-//| def store_next(self, Event: event) -> bool:
+//| def store_next(self, event: Event) -> bool:
59
//| """Store the next key transition event in the supplied event, if available,
60
//| and return ``True``.
61
//| If there are no queued events, do not touch ``event`` and return ``False``.
0 commit comments