Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View cdddg's full-sized avatar

Will Lin cdddg

  • Taipei, Taiwan
  • 14:17 (UTC +08:00)
View GitHub Profile
@cdddg
cdddg / pydantic_1_10.py
Last active November 14, 2023 15:05
Pydantic default values test in version 1.10
from decimal import Decimal
from typing import Optional
from pydantic import BaseModel, root_validator
from pydantic.fields import SHAPE_SINGLETON, ModelField
class CustomBaseModel(BaseModel):
@staticmethod