abstractmethods

This commit is contained in:
John Lancaster
2026-02-21 22:30:50 -06:00
parent 428db7366e
commit 1d2fcd13f9
3 changed files with 27 additions and 10 deletions

View File

@@ -7,6 +7,7 @@ T = TypeVar("T")
@dataclass(frozen=True)
class ChangeEvent(Generic[T]):
index: int
item: T
@dataclass(frozen=True)