Spaces:
Sleeping
Sleeping
File size: 235 Bytes
10af882 |
1 2 3 4 5 6 7 8 9 10 |
from pydantic import BaseModel, constr
from typing import Union, Optional
class Flashcard(BaseModel):
name: constr(max_length=100, min_length=5) # type: ignore
translation: Optional[str] = ""
sample_sentence: Optional[str] = ""
|