Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shri committed Aug 13, 2024
1 parent e0259d0 commit fb71565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/domain/opportunities/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ class Opportunity(CamelizedBaseStruct):
id: UUID
slug: str
name: str
created_at: datetime
updated_at: datetime
stage: OpportunityStage
notes: str | None = None
owner: User | None = None
company: Company | None = None
contacts: list[Person] | None = None
job_posts: list[JobPost] | None = None
logs: list[OpportunityAuditLog] | None = None
creatd_at: datetime
updated_at: datetime


class OpportunityCreate(CamelizedBaseStruct):
Expand Down

0 comments on commit fb71565

Please sign in to comment.