Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
Merge branch 'dev' into users/t-xunguy/debug-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamah committed Apr 21, 2020
2 parents d246992 + 71dc453 commit 26428f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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

0 comments on commit 26428f5

Please sign in to comment.