Skip to content

Commit b61f5f7

Browse files
committed
fix some linting issues
1 parent 8c1da9b commit b61f5f7

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

resend/emails/_batch.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66

77
from ._emails import Emails
88

9+
910
class SendEmailResponse(TypedDict):
1011
id: str
1112
"""
1213
The sent Email ID.
1314
"""
1415

16+
1517
class Batch:
1618

1719
class SendOptions(TypedDict):

resend/emails/_email.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class _EmailDefaultAttrs(_FromParam):
5353
The last event of the email.
5454
"""
5555

56+
5657
class Email(_EmailDefaultAttrs):
5758
"""
5859
Email type that wraps the email object

resend/emails/_emails.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class _CancelScheduledEmailResponse(TypedDict):
6161
},
6262
)
6363

64+
6465
class _SendParamsDefault(_SendParamsFrom):
6566
to: Union[str, List[str]]
6667
"""
@@ -108,6 +109,7 @@ class _SendParamsDefault(_SendParamsFrom):
108109
The date should be in ISO 8601 format (e.g: 2024-08-05T11:52:01.858Z).
109110
"""
110111

112+
111113
class Emails:
112114

113115
class CancelScheduledEmailResponse(_CancelScheduledEmailResponse):

0 commit comments

Comments
 (0)