Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shri committed Aug 13, 2024
1 parent 1948584 commit e0259d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/app/domain/companies/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ class Company(CamelizedBaseStruct):
id: UUID
slug: str
name: str
created_at: datetime
updated_at: datetime
description: str | None = None
type: str | None = None
industry: str | None = None
Expand All @@ -25,8 +27,6 @@ class Company(CamelizedBaseStruct):
linkedin_profile_url: str | None = None
hq_location: Location | None = None
last_funding: Funding | None = None
creatd_at: datetime
updated_at: datetime


class CompanyCreate(CamelizedBaseStruct):
Expand Down
4 changes: 2 additions & 2 deletions src/app/domain/jobs/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ class JobPost(CamelizedBaseStruct):

id: UUID
title: str
created_at: datetime
updated_at: datetime
body: str | None = None
location: Location | None = None
seniority_level: str | None = None
Expand All @@ -25,8 +27,6 @@ class JobPost(CamelizedBaseStruct):
total_applicants: int | None = None
external_id: str | None = None
company: Company | None = None
creatd_at: datetime
updated_at: datetime


class JobPostCreate(CamelizedBaseStruct):
Expand Down
4 changes: 2 additions & 2 deletions src/app/domain/opportunities/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class OpportunityAuditLog(CamelizedBaseStruct):
id: UUID
operation: str
user: User
diff: dict[str, Any] | None = None
creatd_at: datetime
created_at: datetime
updated_at: datetime
diff: dict[str, Any] | None = None


class Opportunity(CamelizedBaseStruct):
Expand Down
4 changes: 2 additions & 2 deletions src/app/domain/people/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ class Person(CamelizedBaseStruct):

id: UUID
slug: str
created_at: datetime
updated_at: datetime
first_name: str | None = None
last_name: str | None = None
full_name: str | None = None
Expand All @@ -35,8 +37,6 @@ class Person(CamelizedBaseStruct):
languages: list[str] | None = None
work_experiences: list[WorkExperience] | None = None
social_activities: list[SocialActivity] | None = None
creatd_at: datetime
updated_at: datetime


class PersonCreate(CamelizedBaseStruct):
Expand Down

0 comments on commit e0259d0

Please sign in to comment.