Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-03-03 15:53:35 -08:00
parent a1a02a1230
commit 532fbb352c
4 changed files with 863 additions and 863 deletions

View File

@ -4,14 +4,14 @@ from pydantic import GetCoreSchemaHandler
from pydantic_core import CoreSchema, core_schema
class LengthUnit(int):
class LengthUnit(float):
""""""
def __int__(self) -> int:
def __float__(self) -> float:
return self
@classmethod
def __get_pydantic_core_schema__(
cls, source_type: Any, handler: GetCoreSchemaHandler
) -> CoreSchema:
return core_schema.no_info_after_validator_function(cls, handler(int))
return core_schema.no_info_after_validator_function(cls, handler(float))