Skip to content

Commit 8d406e0

Browse files
authored
Merge pull request #5670 from dhalbert/fix-blacken-update-formatting-issues-7.1.x
minor .py changes due to blacken update - 7.1.x
2 parents be1d1d2 + d02ea88 commit 8d406e0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

ports/broadcom/qstrdefsport.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626

2727
// qstrs specific to this port, only needed if they aren't auto-generated
2828

29+
// Prevent uncrustify from modifying these lines.
30+
// *FORMAT-OFF*
31+
2932
// Entries for sys.path
3033
Q(/sd)
3134
Q(/sd/lib)

ports/espressif/boards/adafruit_feather_esp32s2_tft/board.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void board_init(void) {
8686

8787
common_hal_busio_spi_never_reset(spi);
8888

89-
displayio_fourwire_obj_t* bus = &displays[0].fourwire_bus;
89+
displayio_fourwire_obj_t *bus = &displays[0].fourwire_bus;
9090
bus->base.type = &displayio_fourwire_type;
9191

9292
common_hal_displayio_fourwire_construct(
@@ -99,7 +99,7 @@ void board_init(void) {
9999
0, // polarity
100100
0 // phase
101101
);
102-
displayio_display_obj_t* display = &displays[0].display;
102+
displayio_display_obj_t *display = &displays[0].display;
103103
display->base.type = &displayio_display_type;
104104

105105
// workaround as board_init() is called before reset_port() in main.c

0 commit comments

Comments
 (0)