From a06efef4eb1f506eef230dfef94867788c7abd73 Mon Sep 17 00:00:00 2001 From: Ethan <108598670+echo-lalia@users.noreply.github.com> Date: Sun, 25 Aug 2024 01:42:02 -0700 Subject: [PATCH] Fix imports (#112) --- src/lib/hydra/simpleterminal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/hydra/simpleterminal.py b/src/lib/hydra/simpleterminal.py index 99086cd..63b15f3 100644 --- a/src/lib/hydra/simpleterminal.py +++ b/src/lib/hydra/simpleterminal.py @@ -5,6 +5,9 @@ When `immediate` is set to `True` (the default value), it draws and shows itself every time you print to it. When `False`, only draw when you call the draw method. You must call `Display.show` manually. """ +from lib.display import Display +from lib.hydra.config import Config + _MH_DISPLAY_HEIGHT = const(135) _MH_DISPLAY_WIDTH = const(240)