Added stats

This commit is contained in:
marc
2025-03-23 00:19:33 +01:00
parent 2f7c7c2429
commit c097811e40
10 changed files with 144 additions and 44 deletions

View File

@@ -4,7 +4,7 @@ from typing import Protocol, Self, TypeVar
class SupportsLessThan(Protocol):
def __lt__(self, other: Self) -> bool:
def __lt__(self, other: Self, /) -> bool:
raise NotImplementedError()