From 79aaa3cc3a6b538411ed2ceb39d196d9f74bdcd1 Mon Sep 17 00:00:00 2001 From: microDev <70126934+microDev1@users.noreply.github.com> Date: Fri, 23 Jul 2021 09:27:54 +0530 Subject: [PATCH] make pre-commit happy fix formatting --- py/circuitpy_mpconfig.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/py/circuitpy_mpconfig.h b/py/circuitpy_mpconfig.h index 22842861e5..fa55185d75 100644 --- a/py/circuitpy_mpconfig.h +++ b/py/circuitpy_mpconfig.h @@ -957,15 +957,15 @@ extern const struct _mp_obj_module_t msgpack_module; struct _supervisor_allocation_node; #define CIRCUITPY_COMMON_ROOT_POINTERS \ - const char *readline_hist[8]; \ - vstr_t *repl_line; \ - mp_obj_t rtc_time_source; \ - GAMEPAD_ROOT_POINTERS \ - KEYPAD_ROOT_POINTERS \ - mp_obj_t pew_singleton; \ - BOARD_UART_ROOT_POINTER \ FLASH_ROOT_POINTERS \ + KEYPAD_ROOT_POINTERS \ + GAMEPAD_ROOT_POINTERS \ + BOARD_UART_ROOT_POINTER \ MEMORYMONITOR_ROOT_POINTERS \ + vstr_t *repl_line; \ + mp_obj_t pew_singleton; \ + mp_obj_t rtc_time_source; \ + const char *readline_hist[8]; \ struct _supervisor_allocation_node *first_embedded_allocation; \ void supervisor_run_background_tasks_if_tick(void);