Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/appui/enhanced_data_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sys
from dataclasses import KW_ONLY, dataclass
from functools import total_ordering
from typing import TYPE_CHECKING, Generic, TypeVar
from typing import TYPE_CHECKING, ClassVar, Generic, TypeVar

from rich.text import Text
from textual.binding import BindingsMap
Expand Down Expand Up @@ -47,6 +47,8 @@
class EnhancedTableCell: # pragma: no cover
"""Rich-renderable table cell with an ordering key."""

default_justification: ClassVar[Justify] = Justify.RIGHT

def __init__(
self,
sort_key: tuple[object, ...],
Expand Down
Loading
Loading