Skip to content

Commit 5b621b0

Browse files
committed
format
1 parent dc676f1 commit 5b621b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

shared-module/terminalio/Terminal.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,11 @@ size_t common_hal_terminalio_terminal_write(terminalio_terminal_obj_t *self, con
226226
if (c < 0x20) {
227227
if (c == '\r') {
228228
self->cursor_x = 0;
229-
} else if (c == '\t'){
230-
for (uint8_t space_i = 0; space_i < 4; space_i++){
231-
terminalio_terminal_set_tile(self, false, ' ', true);
232-
}
233-
}else if (c == '\n') {
229+
} else if (c == '\t') {
230+
for (uint8_t space_i = 0; space_i < 4; space_i++) {
231+
terminalio_terminal_set_tile(self, false, ' ', true);
232+
}
233+
} else if (c == '\n') {
234234
self->cursor_y++;
235235
// Commands below are used by MicroPython in the REPL
236236
} else if (c == '\b') {

0 commit comments

Comments
 (0)