We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f748fbf commit 708f081Copy full SHA for 708f081
aiosmtpd/testing/helpers.py
@@ -61,7 +61,7 @@ async def handle_DATA(
61
class ChunkedReceivingHandler:
62
def __init__(self):
63
self.box: List[Envelope] = []
64
- self.responses: List[str] = [None, '250 OK']
+ self.responses: List[Optional[str]] = [None, '250 OK']
65
self.sent_response = False
66
67
async def handle_DATA_CHUNK(
0 commit comments