mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Add explanatory message to an exception in DataTable
This commit is contained in:
@@ -693,7 +693,7 @@ class DataTable(ScrollView, Generic[CellType], can_focus=True):
|
|||||||
The key of the cell currently occupying this coordinate.
|
The key of the cell currently occupying this coordinate.
|
||||||
"""
|
"""
|
||||||
if not self.is_valid_coordinate(coordinate):
|
if not self.is_valid_coordinate(coordinate):
|
||||||
raise CellDoesNotExist()
|
raise CellDoesNotExist(f"No cell exists at {coordinate!r}.")
|
||||||
row_index, column_index = coordinate
|
row_index, column_index = coordinate
|
||||||
row_key = self._row_locations.get_key(row_index)
|
row_key = self._row_locations.get_key(row_index)
|
||||||
column_key = self._column_locations.get_key(column_index)
|
column_key = self._column_locations.get_key(column_index)
|
||||||
|
|||||||
Reference in New Issue
Block a user