mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Remove a comment
This commit is contained in:
@@ -1113,8 +1113,6 @@ class DataTable(ScrollView, Generic[CellType], can_focus=True):
|
|||||||
Returns:
|
Returns:
|
||||||
List of renderables
|
List of renderables
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# TODO: We have quite a few back and forward key/index conversions, could probably reduce them
|
|
||||||
ordered_columns = self.ordered_columns
|
ordered_columns = self.ordered_columns
|
||||||
if row_index == -1:
|
if row_index == -1:
|
||||||
row = [column.label for column in ordered_columns]
|
row = [column.label for column in ordered_columns]
|
||||||
@@ -1438,7 +1436,8 @@ class DataTable(ScrollView, Generic[CellType], can_focus=True):
|
|||||||
row: tuple[RowKey, dict[ColumnKey | str, CellType]]
|
row: tuple[RowKey, dict[ColumnKey | str, CellType]]
|
||||||
) -> Any:
|
) -> Any:
|
||||||
_, row_data = row
|
_, row_data = row
|
||||||
return itemgetter(*columns)(row_data)
|
result = itemgetter(*columns)(row_data)
|
||||||
|
return result
|
||||||
|
|
||||||
ordered_rows = sorted(
|
ordered_rows = sorted(
|
||||||
self.data.items(), key=sort_by_column_keys, reverse=reverse
|
self.data.items(), key=sort_by_column_keys, reverse=reverse
|
||||||
|
|||||||
Reference in New Issue
Block a user