Skip to content

Commit

Permalink
Fix my default value fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Apr 18, 2024
1 parent c2a743e commit edd3c07
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 edd3c07

Please sign in to comment.