This repository was archived by the owner on Dec 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
base_circuitpython/displayio Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 33from PIL import Image
44import adafruit_display_text
55
6- from .tile_grid import TileGrid
6+ from displayio .tile_grid import TileGrid
77from . import constants as CONSTANTS
88
99import common
Original file line number Diff line number Diff line change 77
88from common import utils
99
10- from . .tile_grid import TileGrid
11- from . .group import Group
12- from . .palette import Palette
13- from . .bitmap import Bitmap
10+ from displayio .tile_grid import TileGrid
11+ from displayio .group import Group
12+ from displayio .palette import Palette
13+ from displayio .bitmap import Bitmap
1414from .. import constants as CONSTANTS
1515from PIL import Image
1616
Original file line number Diff line number Diff line change 3232# Insert absolute path to Circuitpython libraries for CLUE into sys.path
3333sys .path .insert (0 , os .path .join (abs_path_to_parent_dir , CONSTANTS .CIRCUITPYTHON ))
3434
35- # get board so we can get terminal handle
36- import board
37-
3835# This import must happen after the sys.path is modified
3936from common import debugger_communication_client
4037
38+ # get board so we can get terminal handle
39+ import board
40+
4141# get handle to terminal for clue
4242curr_terminal = board .DISPLAY .terminal
4343
You can’t perform that action at this time.
0 commit comments