Skip to content

Commit c2b2096

Browse files
committed
Manual fix for oddball cases
1 parent 9c17191 commit c2b2096

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ports/raspberrypi/bindings/rp2pio/StateMachine.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ STATIC void check_for_deinit(rp2pio_statemachine_obj_t *self) {
309309
//| def restart(self) -> None:
310310
//| """Resets this state machine, runs any init and enables the clock."""
311311
// TODO: "and any others given. They must share an underlying PIO. An exception will be raised otherwise.""
312-
//| ...
313312
STATIC mp_obj_t rp2pio_statemachine_restart(mp_obj_t self_obj) {
314313
rp2pio_statemachine_obj_t *self = MP_OBJ_TO_PTR(self_obj);
315314
check_for_deinit(self);

shared-bindings/_eve/__init__.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
//| contains methods for constructing EVE command
4141
//| buffers and appending basic graphics commands."""
4242
//|
43-
//| class _EVE: ...
43+
//| class _EVE:
44+
//| def __init__(self) -> None:
45+
//| """Create an _EVE object"""
4446
typedef struct _mp_obj__EVE_t {
4547
mp_obj_base_t base;
4648
common_hal__eve_t _eve;

0 commit comments

Comments
 (0)