Skip to content

Instantly share code, notes, and snippets.

@MartinThoma
Created November 1, 2020 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinThoma/fef960fe84b1dfd5473c3969e27200f2 to your computer and use it in GitHub Desktop.
Save MartinThoma/fef960fe84b1dfd5473c3969e27200f2 to your computer and use it in GitHub Desktop.
from pydantic import BaseModel, Field
class Person(BaseModel):
friends : List[int] = Field(default_factory=list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment