Changes made thanks to blake reviews

This commit is contained in:
CheezyGarlicBread 2024-03-25 20:07:55 -04:00
parent 90ce1e2ed1
commit 31d0d89a8a
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ from typing import List
from datetime import datetime from datetime import datetime
from typing import Optional from typing import Optional
from .enum_for_models import ProgramTypeEnum from .enum_for_models import ProgramTypeEnum
from .resource_model import Resource
class Resource(BaseModel): class Resource(BaseModel):

View File

@ -6,7 +6,7 @@ from typing import Optional
class Tag(BaseModel): class Tag(BaseModel):
id: int id: int | None = None
content: str = Field( content: str = Field(
..., max_length=600, description="content associated with the tag" ..., max_length=600, description="content associated with the tag"
) )