Fix imports in data table tests

This commit is contained in:
Darren Burns
2023-02-08 16:07:17 +00:00
parent 08233843c3
commit a6f382660c

View File

@@ -11,12 +11,12 @@ from textual.events import Click, MouseMove
from textual.message import Message from textual.message import Message
from textual.message_pump import MessagePump from textual.message_pump import MessagePump
from textual.widgets import DataTable from textual.widgets import DataTable
from textual.widgets._data_table import CellKey
from textual.widgets.data_table import ( from textual.widgets.data_table import (
CellDoesNotExist,
RowKey,
Row,
ColumnKey, ColumnKey,
CellDoesNotExist,
CellKey,
Row,
RowKey,
) )
ROWS = [["0/0", "0/1"], ["1/0", "1/1"], ["2/0", "2/1"]] ROWS = [["0/0", "0/1"], ["1/0", "1/1"], ["2/0", "2/1"]]