mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-06 20:50:17 -04:00
Changes made thanks to blake reviews
This commit is contained in:
parent
90ce1e2ed1
commit
31d0d89a8a
|
@ -4,6 +4,7 @@ from typing import List
|
|||
from datetime import datetime
|
||||
from typing import Optional
|
||||
from .enum_for_models import ProgramTypeEnum
|
||||
from .resource_model import Resource
|
||||
|
||||
|
||||
class Resource(BaseModel):
|
||||
|
|
|
@ -6,7 +6,7 @@ from typing import Optional
|
|||
|
||||
|
||||
class Tag(BaseModel):
|
||||
id: int
|
||||
id: int | None = None
|
||||
content: str = Field(
|
||||
..., max_length=600, description="content associated with the tag"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user