summaryrefslogtreecommitdiff
path: root/shared-bindings/busio
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2020-05-13 08:36:16 -0700
committerScott Shawcroft <scott@tannewt.org>2020-05-13 08:36:16 -0700
commit3ffa5604fc0523aa131be4a353fb883a9c8a37ff (patch)
tree1aad88937074ffaace775ea189e45970eb4135d5 /shared-bindings/busio
parent7546d47f777636962fa0119224f52496ab64181f (diff)
Update countio to python stub docs
Diffstat (limited to 'shared-bindings/busio')
-rw-r--r--shared-bindings/busio/UART.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/shared-bindings/busio/UART.c b/shared-bindings/busio/UART.c
index d4642225c..2bd36145d 100644
--- a/shared-bindings/busio/UART.c
+++ b/shared-bindings/busio/UART.c
@@ -346,13 +346,11 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(busio_uart_reset_input_buffer_obj, busio_uart_o
//| class Parity:
//| """Enum-like class to define the parity used to verify correct data transfer."""
//|
-//| def __init__(self, ):
-//| ODD: Any = ...
-//| """Total number of ones should be odd."""
+//| ODD: Any = ...
+//| """Total number of ones should be odd."""
//|
-//| EVEN: Any = ...
-//| """Total number of ones should be even."""
-//| ...
+//| EVEN: Any = ...
+//| """Total number of ones should be even."""
//|
const mp_obj_type_t busio_uart_parity_type;