initial commit

This commit is contained in:
John Lancaster
2026-02-21 18:05:34 -06:00
commit f9d5b12a21
9 changed files with 627 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from typing import Generic, TypeVar
T = TypeVar('T')
class HookedList(Generic[T], list[T]):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def __repr__(self):
return f'{self.__class__.__name__}({super().__repr__()})'