Remove draw.py, fix imports

This commit is contained in:
Darren Burns
2022-10-13 11:15:15 +01:00
parent 467700c759
commit 1b0c94e8a0
17 changed files with 15 additions and 354 deletions

View File

@@ -14,12 +14,13 @@ from rich.console import Console
from textual import events, errors
from textual._ansi_sequences import SYNC_START
from textual._clock import _Clock
from textual.app import WINDOWS
from textual._context import active_app
from textual.app import App, ComposeResult
from textual.app import WINDOWS
from textual.driver import Driver
from textual.geometry import Size, Region
# N.B. These classes would better be named TestApp/TestConsole/TestDriver/etc,
# but it makes pytest emit warning as it will try to collect them as classes containing test cases :-/