Skip to content

Commit

Permalink
rename Error to FreeBusyError
Browse files Browse the repository at this point in the history
  • Loading branch information
spang committed Oct 10, 2023
1 parent 2223d02 commit 9bd6100
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nylas/models/free_busy.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@dataclass_json
@dataclass
class Error:
class FreeBusyError:
"""
Interface for a Nylas free/busy call error
Expand Down Expand Up @@ -58,11 +58,11 @@ class GetFreeBusyResponse:
"""
Interface for a Nylas get free/busy response
A list of FreeBusy objects and Error objects.
A list of FreeBusy objects and FreeBusyError objects.
"""

List[Union[FreeBusy, Error]]
List[Union[FreeBusy, FreeBusyError]]


class GetFreeBusyRequest(TypedDict):
Expand Down

0 comments on commit 9bd6100

Please sign in to comment.