Skip to content

fix busio.UART.Parity documentation indentation #10582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions shared-bindings/busio/UART.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,14 @@ static mp_obj_t busio_uart_obj_reset_input_buffer(mp_obj_t self_in) {
return mp_const_none;
}
static MP_DEFINE_CONST_FUN_OBJ_1(busio_uart_reset_input_buffer_obj, busio_uart_obj_reset_input_buffer);
//| class Parity:
//| """Enum-like class to define the parity used to verify correct data transfer."""
//| class Parity:
//| """Enum-like class to define the parity used to verify correct data transfer."""
//|
//| ODD: int
//| """Total number of ones should be odd."""
//| ODD: int
//| """Total number of ones should be odd."""
//|
//| EVEN: int
//| """Total number of ones should be even."""
//| EVEN: int
//| """Total number of ones should be even."""
//|
//|
const mp_obj_type_t busio_uart_parity_type;
Expand Down
Loading