|
35 | 35 | CellCacheKey: TypeAlias = ( |
36 | 36 | "tuple[RowKey, ColumnKey, Style, bool, bool, bool, int, PseudoClasses]" |
37 | 37 | ) |
38 | | -LineCacheKey: TypeAlias = "tuple[int, int, int, int, Coordinate, Coordinate, Style, CursorType, bool, int, PseudoClasses]" |
39 | | -RowCacheKey: TypeAlias = "tuple[RowKey, int, Style, Coordinate, Coordinate, CursorType, bool, bool, int, PseudoClasses]" |
| 38 | +LineCacheKey: TypeAlias = ( |
| 39 | + "tuple[int, int, int, int, Coordinate, Coordinate, Style, CursorType, bool, int, PseudoClasses]" |
| 40 | +) |
| 41 | +RowCacheKey: TypeAlias = ( |
| 42 | + "tuple[RowKey, int, Style, Coordinate, Coordinate, CursorType, bool, bool, int, PseudoClasses]" |
| 43 | +) |
40 | 44 | CursorType = Literal["cell", "row", "column", "none"] |
41 | 45 | """The valid types of cursors for [`DataTable.cursor_type`][textual.widgets.DataTable.cursor_type].""" |
42 | 46 | CellType = TypeVar("CellType") |
|
0 commit comments