Skip to content

Commit

Permalink
🔨 Make attendee timezone optional. Again.
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Apr 19, 2024
1 parent 42c9d0c commit 04e9a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/appointment/database/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
class AttendeeBase(BaseModel):
email: str
name: str | None = None
timezone: str
timezone: str | None = None


class Attendee(AttendeeBase):
Expand Down

0 comments on commit 04e9a9c

Please sign in to comment.