File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Metro/Metro_RP2350_Memory Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,12 @@ def update_score_text():
58
58
# initial state is title screen
59
59
CUR_STATE = STATE_TITLE
60
60
61
+ # pylint: disable=ungrouped-imports
61
62
if hasattr (supervisor .runtime , "display" ) and supervisor .runtime .display is not None :
62
63
# use the built-in HSTX display for Metro RP2350
63
64
display = supervisor .runtime .display
64
65
else :
66
+ # pylint: disable=ungrouped-imports
65
67
from displayio import release_displays
66
68
import picodvi
67
69
import board
Original file line number Diff line number Diff line change 14
14
import terminalio
15
15
import usb .core
16
16
17
-
17
+ # pylint: disable=ungrouped-imports
18
18
if hasattr (supervisor .runtime , "display" ) and supervisor .runtime .display is not None :
19
19
# use the built-in HSTX display for Metro RP2350
20
20
display = supervisor .runtime .display
21
21
else :
22
+ # pylint: disable=ungrouped-imports
22
23
from displayio import release_displays
23
24
import picodvi
24
25
import board
Original file line number Diff line number Diff line change 19
19
import terminalio
20
20
import usb .core
21
21
22
+ # pylint: disable=ungrouped-imports
22
23
if hasattr (supervisor .runtime , "display" ) and supervisor .runtime .display is not None :
23
24
# use the built-in HSTX display for Metro RP2350
24
25
display = supervisor .runtime .display
You can’t perform that action at this time.
0 commit comments