This commit is contained in:
itamar 2026-04-10 16:39:57 +02:00
commit 1ac693fdc2
Signed by: itamar
SSH key fingerprint: SHA256:Dv6UzB9hN8q8FUgMR/7X3DTFpE/vSB2m05+KNnxM4B0
9 changed files with 670 additions and 0 deletions

9
values.py Normal file
View file

@ -0,0 +1,9 @@
from dataclasses import dataclass
@dataclass
class Number:
value: float
def __repr__(self):
return f"{self.value}"