Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/base_circuitpython/displayio/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from PIL import Image
import adafruit_display_text

from .tile_grid import TileGrid
from displayio.tile_grid import TileGrid
from . import constants as CONSTANTS

import common
Expand Down
8 changes: 4 additions & 4 deletions src/base_circuitpython/displayio/test/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

from common import utils

from ..tile_grid import TileGrid
from ..group import Group
from ..palette import Palette
from ..bitmap import Bitmap
from displayio.tile_grid import TileGrid
from displayio.group import Group
from displayio.palette import Palette
from displayio.bitmap import Bitmap
from .. import constants as CONSTANTS
from PIL import Image

Expand Down
6 changes: 3 additions & 3 deletions src/debug_user_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
# Insert absolute path to Circuitpython libraries for CLUE into sys.path
sys.path.insert(0, os.path.join(abs_path_to_parent_dir, CONSTANTS.CIRCUITPYTHON))

# get board so we can get terminal handle
import board

# This import must happen after the sys.path is modified
from common import debugger_communication_client

# get board so we can get terminal handle
import board

# get handle to terminal for clue
curr_terminal = board.DISPLAY.terminal

Expand Down